X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=server%2Ffastcgi.h;h=269bb94a5d00f972207e78d42de89f1e54f5430d;hb=0bcd433fc420fa29bfaaca732acf689c9603e59d;hp=af56301c3a224efd7ee65797bd365b05bbe6dcc3;hpb=9e7cfbbc6137056bba8ed8644fc6ecfe398553fe;p=matches%2FMCTX3420.git diff --git a/server/fastcgi.h b/server/fastcgi.h index af56301..269bb94 100644 --- a/server/fastcgi.h +++ b/server/fastcgi.h @@ -39,15 +39,32 @@ typedef struct FCGIValue { unsigned flags; } FCGIValue; -typedef struct FCGIContext FCGIContext; +/**Contextual information related to FCGI requests*/ +typedef struct +{ + /**The time of last valid user access possessing the control key**/ + time_t control_timestamp; + /**A SHA-1 hash that is the control key, determining who is logged in**/ + char control_key[41]; + /**The IPv4 address of the logged-in user**/ + char control_ip[16]; + /**A friendly name for the logged-in user. Max length 30**/ + char friendly_name[31]; + /**The name of the current module**/ + const char *current_module; + /**For debugging purposes?**/ + int response_number; +} FCGIContext; + typedef void (*ModuleHandler) (FCGIContext *context, char *params); -extern void FCGI_LockControl(FCGIContext *context, bool force); +extern bool FCGI_LockControl(FCGIContext *context, bool force); extern void FCGI_ReleaseControl(FCGIContext *context); extern bool FCGI_HasControl(FCGIContext *context, const char *key); extern char *FCGI_KeyPair(char *in, const char **key, const char **value); extern bool FCGI_ParseRequest(FCGIContext *context, char *params, FCGIValue values[], size_t count); extern void FCGI_BeginJSON(FCGIContext *context, StatusCodes status_code); +extern void FCGI_AcceptJSON(FCGIContext *context, const char *description, const char *cookie); extern void FCGI_JSONPair(const char *key, const char *value); extern void FCGI_JSONLong(const char *key, long value); extern void FCGI_JSONDouble(const char *key, double value); @@ -59,6 +76,8 @@ extern void FCGI_RejectJSONEx(FCGIContext *context, StatusCodes status, const ch extern char *FCGI_EscapeText(char *buf); extern void *FCGI_RequestLoop (void *data); +extern void FCGI_WriteBinary(void * data, size_t size, size_t num_elem); + /** * Shortcut to calling FCGI_RejectJSONEx. Sets the error code * to STATUS_ERROR.