* UDP broadcast from Windows
@ 2007-10-10 1:31 Reed Wilson
2007-10-10 8:55 ` [Caml-list] " Xavier Leroy
0 siblings, 1 reply; 2+ messages in thread
From: Reed Wilson @ 2007-10-10 1:31 UTC (permalink / raw)
To: caml-list
Hi guys!
I'm in the middle of writing a program which does a UDP broadcast, but I
noticed it doesn't work on Windows. Here's the source:
try (
let sock = Unix.socket Unix.PF_INET Unix.SOCK_DGRAM 0 in
Unix.setsockopt sock Unix.SO_BROADCAST true;
let sent = Unix.sendto sock "ping" 0 4 [] (Unix.ADDR_INET
((Unix.inet_addr_of_string "255.255.255.255"), 12345)) in
Printf.printf "Sent %d\n" sent;
) with
| Unix.Unix_error (x,y,z) -> Printf.printf "%S - %s,%s\n"
(Unix.error_message x) y z
;;
I noticed that when I force the address by replacing:
Unix.inet_addr_of_string "255.255.255.255"
with:
Obj.magic "\255\255\255\255"
it _seems_ to work fine. I looked around in the OCaml source, and it
looks like the broadcast address is specifically disallowed unless
HAS_INET_ATON is defined? Why is this? And am I breaking anything by
using magic?
Thanks
Reed
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [Caml-list] UDP broadcast from Windows
2007-10-10 1:31 UDP broadcast from Windows Reed Wilson
@ 2007-10-10 8:55 ` Xavier Leroy
0 siblings, 0 replies; 2+ messages in thread
From: Xavier Leroy @ 2007-10-10 8:55 UTC (permalink / raw)
To: cedilla+ocaml; +Cc: caml-list
Reed Wilson wrote:
> Hi guys!
>
> I'm in the middle of writing a program which does a UDP broadcast, but I
> noticed it doesn't work on Windows. Here's the source:
>
> try (
> let sock = Unix.socket Unix.PF_INET Unix.SOCK_DGRAM 0 in
> Unix.setsockopt sock Unix.SO_BROADCAST true;
> let sent = Unix.sendto sock "ping" 0 4 [] (Unix.ADDR_INET
> ((Unix.inet_addr_of_string "255.255.255.255"), 12345)) in
> Printf.printf "Sent %d\n" sent;
> ) with
> | Unix.Unix_error (x,y,z) -> Printf.printf "%S - %s,%s\n"
> (Unix.error_message x) y z
> ;;
> I looked around in the OCaml source, and it
> looks like the broadcast address is specifically disallowed unless
> HAS_INET_ATON is defined? Why is this?
Quoting the Linux man page:
The inet_addr() function converts the Internet host address cp from
numbers-and-dots notation into binary data in network byte order. If
the input is invalid, INADDR_NONE (usually -1) is returned. This is an
obsolete interface to inet_aton(), described immediately above; it is
obsolete because -1 is a valid address (255.255.255.255), and
inet_aton() provides a cleaner way to indicate error return.
Unfortunately, Windows does not provide any of the better substitutes
for inet_addr, namely inet_aton and inet_pton. Send a bug report to
Microsoft.
> I noticed that when I force the address by replacing:
> Unix.inet_addr_of_string "255.255.255.255"
>
> with:
> Obj.magic "\255\255\255\255"
>
> it _seems_ to work fine. [...]
> And am I breaking anything by using magic?
Currently not. Inet addresses are represented internally as strings
(of length 4 for IPv4, 16 for IPv6) containing the bytes of the
address in network byte order. This is of course not guaranteed but
unlikely to change soon.
- Xavier Leroy
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-10-10 8:55 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-10-10 1:31 UDP broadcast from Windows Reed Wilson
2007-10-10 8:55 ` [Caml-list] " Xavier Leroy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox