[
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: | Brian Naylor <bwv211mail@y...> |
| Subject: | [Caml-list] serialize/deserialize |
I need to write my own marshalling functions for a network protocol stack. Is there any way I can make use of the <caml/intext.h> serialization and deserialization functions? Has anyone trod this path before me and is willing to share their wisdom? Why am I doing this, you ask? Bandwidth is critical, and custom marshalling can save a lot of space - especially in getting rid of headers. Also, I want to do things like serialize some info, add a MAC, then serialize some more. The off-the-shelf solution is too space-inefficient: let alen = Marshal.to_buffer buf ofs max adata [] in let mac = Digest.substring buf ofs alen in let blen = Marshal.to_buffer buf (ofs + alen) (max - alen) (mac, bdata) [] in ... Thanks for any advice... __________________________________________________ Do You Yahoo!? Yahoo! Autos - Get free new car price quotes http://autos.yahoo.com ------------------- 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