Re: ..on SOCKS5 support

Thorsten Glaser <[email protected]>
Newsgroups gmane.comp.web.lynx.devel
Message-ID <[email protected]>
Thomas Dickey dixit:

>well... I'll have to set up something for testing

ssh -D starts a SOCKS5 server on the SSH client side AIUI.

>but here's something more like the style of lynx

Please…

-       /* C99 */  {
-           unsigned short x;   /* XXX 16-bit? */
-
-           x = htons(socks5_port);
-           memcpy(&pbuf[i], (unsigned char *) &x, sizeof x);
-           i += (unsigned) sizeof(x);
-       }
+       pbuf[i++] = (((unsigned)socks5_port) >> 8) & 0xFF;
+       pbuf[i++] = ((unsigned)socks5_port) & 0xFF;

(or just make socks5_port unsigned int, if you can)

This should even be optimisable by compilers.

bye,
//mirabilos
-- 
16:06⎜<Draget:#cvs> Thank god I found you =)   20:03│«bioe007:#cvs» mira2k: ty
17:14⎜<ldiain:#cvs> Thanks big help you are :-)   <bioe007> mira|nwt: ty again
18:36⎜«ThunderChicken:#cvs» mirabilos FTW!  23:03⎜«mithraic:#cvs» aaah. thanks
21:34⎜<centosian:#cvs> mirabilos: whoa that's sweet

_______________________________________________
Lynx-dev mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/lynx-dev
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.