Browse thread
Re: Netwoking examples..
- Benjamin C. Pierce
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Benjamin C. Pierce <bcpierce@s...> |
| Subject: | Re: Netwoking examples.. |
> Can anyone give me a pointer to a few networking examples in
> OCaml using sockets and connects ??
Unison uses sockets plus ocaml's marshalling feature to implement its
own remote procedure call mechanism. The code is a bit complex, since
it handles propagation of exceptions, etc., across address spaces,
bidirectional RPC, etc., but it's fairly well modularized.
http://www.cis.upenn.edu/~bcpierce/unison
-- B