RE: getsockopt--Solution on Win32 and Linux

2005-01-08 Thread John Serink
; perl-win32-users@listserv.ActiveState.com Subject: RE: getsockopt--Solution on Win32 Hi Bill: Thanx for that! Got Stein's Network programming With Perl and he alos have the unit struc in it as does allthe online docs. Just one of those things. Also, in Windows SO-LINGER appears

RE: getsockopt--Solution on Win32

2005-01-06 Thread John Serink
Ok, from: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winsock /winsock/linger_2.asp You'll note that using Winsock the linger structure is: typedef struct linger { u_short l_onoff; u_short l_linger; } linger; While from: http://www.rt.com/man/getsockopt.2.html The linus

Re: getsockopt--Solution on Win32

2005-01-06 Thread $Bill Luebkert
John Serink wrote: Ok, from: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winsock /winsock/linger_2.asp You'll note that using Winsock the linger structure is: typedef struct linger { u_short l_onoff; u_short l_linger; } linger; Too bad the orig post didn't

RE: getsockopt--Solution on Win32

2005-01-06 Thread John Serink
the appropriate settings Cheers, john -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of $Bill Luebkert Sent: Friday, January 07, 2005 1:57 PM To: perl-win32-users@listserv.ActiveState.com Subject: Re: getsockopt--Solution on Win32 John Serink wrote