Socket programming tips in Solaris

  NanXiao        2014-05-09 23:01:03       11,867        0    

I sponsored a topic in stackoverflow.com, and hoped the programmers can share the socket programming tips in different UNIX flavors. But unfortunately, the responders are few. So I can only share my socket programming tips in Solaris at here (the Chinese version can be found there):

1. Use the following link options: "-lresolv -lnsl -lsocket";
2. Solaris doesn't provide socket options: SO_SNDTIMEO and SO_RCVTIMEO(Why does Solaris OS define SO_SNDTIMEO and SO_RCVTIMEO socket options in header file which actually not support by kernel?);
3. In SCTP programming, must call bind() before calling sctp_bindx()(sctp_bindx(Solaris sctp library) always return "Invalid argument");
4. When calling shutdown() on a listen socket, it will cause ENOTCONN error(Why shutdown a socket can't let the select() return?).

C  SOCKET  SOLARIS 

       

  RELATED


  0 COMMENT


No comment for this article.



  RANDOM FUN

Ass or myAss

While writing asset management code...Programmer 1: Can I name my variable ass?Programmer 2: Is it a private variable?Programmer 1: YesProgrammer 2: Then name it - myAss