(type egg)
(signature "netstring egg")
(timestamp 1612269487)
(sxml ((section 2 "Outdated egg!" (p "This is an egg for CHICKEN 4, the unsupported old release.  You're almost certainly looking for " (int-link "/eggref/5/netstring" "the CHICKEN 5 version of this egg") ", if it exists.") (p "If it does not exist, there may be equivalent functionality provided by another egg; have a look at the " (link "https://wiki.call-cc.org/chicken-projects/egg-index-5.html" "egg index") ". Otherwise, please consider porting this egg to the current version of CHICKEN.") (tags "egg")) (section 2 "netstring" (toc) (section 3 "Description" (p "This egg provides porocedures for reading and writing so called " (link "http://cr.yp.to/proto/netstrings.txt" "netstrings") ".")) (section 3 "Author" (p (int-link "/users/moritz-heidkamp" "Moritz Heidkamp"))) (section 3 "Documentation" (def (sig (procedure "(netstring-write str #!optional port)" (id netstring-write))) (p "Writes " (tt "str") " to " (tt "port") " (" (tt "(current-output-port)") " by default).")) (def (sig (procedure "(netstring-read #!optional port)" (id netstring-read))) (p "Reads a netstring from " (tt "port") " (" (tt "(current-input-port)") " by default) and returns its interpretation.")) (def (sig (procedure "(string->netstring str)" (id string->netstring))) (p "Converts " (tt "str") " to a netstring.")) (def (sig (procedure "(netstring->string ns)" (id netstring->string))) (p "Returns the interpretation of " (tt "ns") "."))))))
