in reply to Re: Socket problem - when running Win32 app as someone different than Admin
in thread Socket problem - when running Win32 app as someone different than Admin

Thanks, ++ for each of you.. if it is a port problem as you suggest. It is ugly because, I don't get a value for $! or $@ back.
  • Comment on Re: Re: Socket problem - when running Win32 app as someone different than Admin

Replies are listed 'Best First'.
Re^3: Socket problem - when running Win32 app as someone different than Admin
by tye (Sage) on Feb 03, 2003 at 18:03 UTC

    In the case of WinSock errors, $! gets set to an error code that has no text description programmatically available. So check 0+$! instead of $! and then look up that error number in winsock.h.

                    - tye