caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Michal Moskal <malekith@pld-linux.org>
To: "altavillasalvatore@libero.it" <altavillasalvatore@libero.it>
Cc: caml-list@inria.fr
Subject: Re: [Caml-list] TIME-OUT
Date: Wed, 19 Feb 2003 13:18:27 +0100	[thread overview]
Message-ID: <20030219121827.GA7939@roke.freak> (raw)
In-Reply-To: <HAJTEF$4AA8E84016371F45884FD7602560746C@libero.it>

On Wed, Feb 19, 2003 at 10:08:39AM +0100, altavillasalvatore@libero.it wrote:
> Hi All,
> 
> My problem is this:
> 
> let risposta byte =
> let pdu_length = String.length byte in
> let my_name =Unix.gethostname() in
> let my_entry_byname = Unix.gethostbyname my_name in
> let my_addr = my_entry_byname.Unix.h_addr_list.(0) in
> let sockaddr = Unix.ADDR_INET(my_addr, 161) in
> let sock = Unix.socket Unix.PF_INET Unix.SOCK_DGRAM 0 in
> let sock1 =  Unix.ADDR_INET(my_addr, 12346) in
> Unix.bind sock sock1;
> let w = Unix.sendto sock byte 0 pdu_length [] sockaddr in
> let max = 512 in
> let buf=ref (String.create max) in
> let len, addr =Unix.recvfrom sock !buf 0 max [] in
> Unix.close sock;
> let answer = String.sub !buf 0 len in
> answer
> 
> I would want to introduce a Timeout for input operations (a 
> floating-point value representing a time in seconds) of 15 second.

Either use Unix.select (to wait 15 second until input is available)
or Unix.alarm/Unix.setitimer (to arrange SIGALRM to be delivered in 
15 seconds, so it will break recvfrom). First solution is probably
cleaner and more efficient (and I'm not sure if recvfrom won't 
restart after signal being delivered).

-- 
: Michal Moskal ::::: malekith/at/pld-linux.org :  GCS {C,UL}++++$ a? !tv
: PLD Linux ::::::: Wroclaw University, CS Dept :  {E-,w}-- {b++,e}>+++ h

-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


  reply	other threads:[~2003-02-19 12:21 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-02-19  9:08 altavillasalvatore
2003-02-19 12:18 ` Michal Moskal [this message]
2003-02-19 12:34 ` Gerd Stolpmann
2003-02-19 12:23 Beck01, Wolfgang

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20030219121827.GA7939@roke.freak \
    --to=malekith@pld-linux.org \
    --cc=altavillasalvatore@libero.it \
    --cc=caml-list@inria.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).