caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* UDP client
@ 2007-03-30  2:23 Alexsandro Soares
  2007-03-30 11:28 ` [Caml-list] " Gerd Stolpmann
  0 siblings, 1 reply; 2+ messages in thread
From: Alexsandro Soares @ 2007-03-30  2:23 UTC (permalink / raw)
  To: caml-list

Hi all,

  I'm working in an UDP client, but I can't figure out how to get the same behaviour, in OCaml, such as the C code below:

-----------------------------------------------------------------------------------------------

  sigset_t sigmask;

  sigemptyset(&sigmask);
  sigaddset(&sigmask, SIGIO);      
  sigprocmask(SIG_BLOCK, &sigmask, NULL);
  
  /*
   *  Open UDP socket.
   */
  if( (sockfd = socket(AF_INET, SOCK_DGRAM, 0)) < 0){
    return sock ;      /* Can't open socket. */
  }
  
  if (fcntl(sockfd, F_SETOWN, getpid()) == -1) return sock;

  val = fcntl(sockfd, F_GETFL, 0) ;

  val |= O_NONBLOCK ;
  val |= FASYNC;
  fcntl(sockfd, F_SETFL, val) ;

------------------------------------------------------------------------------------

Could anyone help me?

Thanks,

Alex




__________________________________________________
Fale com seus amigos  de graça com o novo Yahoo! Messenger 
http://br.messenger.yahoo.com/


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-03-30 11:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-03-30  2:23 UDP client Alexsandro Soares
2007-03-30 11:28 ` [Caml-list] " Gerd Stolpmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).