annotate demo/listFun.urs @ 2071:739172204214

Introduce recv timeout controlled by '-T' option in http.c This should prevent a DDoS attack where attacker and keeps the connection open but send no data.
author Sergey Mironov <grrwlf@gmail.com>
date Tue, 02 Sep 2014 17:42:10 +0000
parents ab3177746c78
children
rev   line source
adamc@386 1 functor Make(M : sig
adamc@386 2 type t
adamc@398 3 val toString : t -> string
adamc@398 4 val fromString : string -> option t
adamc@386 5 end) : sig
adamc@386 6 val main : unit -> transaction page
adamc@386 7 end