this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

more

+17 -1
+17 -1
lib/fastcgi.mli
··· 58 58 This includes all the fundamental FastCGI protocol types. *) 59 59 include module type of Fastcgi_types 60 60 61 + (** {1 Protocol Implementation} *) 62 + 63 + (** Wire protocol parsing and serialization. *) 64 + module Protocol = Fastcgi_protocol 65 + 66 + (** {1 Role-Specific Implementations} *) 67 + 68 + (** Responder role implementation. *) 69 + module Responder = Fastcgi_responder 70 + 71 + (** Authorizer role implementation. *) 72 + module Authorizer = Fastcgi_authorizer 73 + 74 + (** Filter role implementation. *) 75 + module Filter = Fastcgi_filter 76 + 61 77 (** {1 Application Interface} *) 62 78 63 79 (** Application handler signatures. ··· 370 386 (** Clear buffer contents. *) 371 387 val clear : t -> unit 372 388 end 373 - end 389 + end