aboutsummaryrefslogtreecommitdiffstats
path: root/src/libtipidee/tipidee_fcgi_beginrequest.c
blob: 8a5a9a98e31c46e9aad4b7c87779f4cecaca8922 (plain)
1
2
3
4
5
6
7
8
9
/* ISC license. */

#include <tipidee/fcgi.h>

int tipidee_fcgi_beginrequest (tipidee_fcgi *fc, tain *stamp)
{
  char body[8] = { 0, FCGI_RESPONDER, FCGI_KEEP_CONN, 0, 0, 0, 0, 0 } ;
  return tipidee_fcgi_put(fc, FCGI_BEGIN_REQUEST, body, 8, stamp) == 8 ;
}