Symbol: fcgi_record_header
usr.sbin/bgplgd/slowcgi.c
1052
struct fcgi_record_header *header;
usr.sbin/bgplgd/slowcgi.c
1059
header = (struct fcgi_record_header*) resp->data;
usr.sbin/bgplgd/slowcgi.c
1066
n = read(fd, resp->data + sizeof(struct fcgi_record_header),
usr.sbin/bgplgd/slowcgi.c
1081
resp->data_len = n + sizeof(struct fcgi_record_header);
usr.sbin/bgplgd/slowcgi.c
1116
struct fcgi_record_header *header;
usr.sbin/bgplgd/slowcgi.c
1125
header = (struct fcgi_record_header*) resp->data;
usr.sbin/bgplgd/slowcgi.c
1133
memcpy(resp->data + sizeof(struct fcgi_record_header), d, n);
usr.sbin/bgplgd/slowcgi.c
1137
resp->data_len = n + sizeof(struct fcgi_record_header);
usr.sbin/bgplgd/slowcgi.c
1149
struct fcgi_record_header *header;
usr.sbin/bgplgd/slowcgi.c
1156
header = (struct fcgi_record_header*) resp->data;
usr.sbin/bgplgd/slowcgi.c
1165
sizeof(struct fcgi_record_header));
usr.sbin/bgplgd/slowcgi.c
1173
sizeof(struct fcgi_record_header);
usr.sbin/bgplgd/slowcgi.c
1218
dump_fcgi_record(const char *p, struct fcgi_record_header *h)
usr.sbin/bgplgd/slowcgi.c
1231
dump_fcgi_record_header(const char* p, struct fcgi_record_header *h)
usr.sbin/bgplgd/slowcgi.c
172
struct fcgi_record_header *);
usr.sbin/bgplgd/slowcgi.c
174
struct fcgi_record_header *);
usr.sbin/bgplgd/slowcgi.c
56
(sizeof(struct fcgi_record_header) + FCGI_CONTENT_SIZE + FCGI_PADDING_SIZE)
usr.sbin/bgplgd/slowcgi.c
592
struct fcgi_record_header *header;
usr.sbin/bgplgd/slowcgi.c
595
header = (struct fcgi_record_header*)resp->data;
usr.sbin/bgplgd/slowcgi.c
615
struct fcgi_record_header *header;
usr.sbin/bgplgd/slowcgi.c
622
header = (struct fcgi_record_header*) resp->data;
usr.sbin/bgplgd/slowcgi.c
839
struct fcgi_record_header *h;
usr.sbin/bgplgd/slowcgi.c
841
if (n < sizeof(struct fcgi_record_header))
usr.sbin/bgplgd/slowcgi.c
844
h = (struct fcgi_record_header*) buf;
usr.sbin/bgplgd/slowcgi.c
849
if (n < sizeof(struct fcgi_record_header) + ntohs(h->content_len)
usr.sbin/bgplgd/slowcgi.c
860
parse_begin_request(buf + sizeof(struct fcgi_record_header),
usr.sbin/bgplgd/slowcgi.c
864
parse_params(buf + sizeof(struct fcgi_record_header),
usr.sbin/bgplgd/slowcgi.c
868
parse_stdin(buf + sizeof(struct fcgi_record_header),
usr.sbin/bgplgd/slowcgi.c
876
return (sizeof(struct fcgi_record_header) + ntohs(h->content_len)
usr.sbin/httpd/server_fcgi.c
116
clt->clt_fcgi.toread = sizeof(struct fcgi_record_header);
usr.sbin/httpd/server_fcgi.c
146
h = (struct fcgi_record_header *)&param.buf;
usr.sbin/httpd/server_fcgi.c
153
begin = (struct fcgi_begin_request_body *)&param.buf[sizeof(struct fcgi_record_header)];
usr.sbin/httpd/server_fcgi.c
157
sizeof(struct fcgi_record_header) +
usr.sbin/httpd/server_fcgi.c
357
sizeof(struct fcgi_record_header) +
usr.sbin/httpd/server_fcgi.c
367
sizeof(struct fcgi_record_header)) == -1) {
usr.sbin/httpd/server_fcgi.c
418
struct fcgi_record_header h;
usr.sbin/httpd/server_fcgi.c
429
sizeof(struct fcgi_record_header));
usr.sbin/httpd/server_fcgi.c
43
(sizeof(struct fcgi_record_header) + FCGI_CONTENT_SIZE + FCGI_PADDING_SIZE)
usr.sbin/httpd/server_fcgi.c
433
sizeof(struct fcgi_record_header)) == -1)
usr.sbin/httpd/server_fcgi.c
444
struct fcgi_record_header *h;
usr.sbin/httpd/server_fcgi.c
462
sizeof(struct fcgi_record_header) + p->total_len) == -1)
usr.sbin/httpd/server_fcgi.c
467
h = (struct fcgi_record_header *)p->buf;
usr.sbin/httpd/server_fcgi.c
520
struct fcgi_record_header *h;
usr.sbin/httpd/server_fcgi.c
541
h = (struct fcgi_record_header *)
usr.sbin/httpd/server_fcgi.c
622
sizeof(struct fcgi_record_header);
usr.sbin/httpd/server_fcgi.c
634
sizeof(struct fcgi_record_header);
usr.sbin/httpd/server_fcgi.c
95
struct fcgi_record_header *h;
usr.sbin/slowcgi/slowcgi.c
1006
header = (struct fcgi_record_header*) resp->data;
usr.sbin/slowcgi/slowcgi.c
1015
sizeof(struct fcgi_record_header));
usr.sbin/slowcgi/slowcgi.c
1023
sizeof(struct fcgi_record_header);
usr.sbin/slowcgi/slowcgi.c
1031
struct fcgi_record_header *header;
usr.sbin/slowcgi/slowcgi.c
1038
header = (struct fcgi_record_header*) resp->data;
usr.sbin/slowcgi/slowcgi.c
1045
n = read(fd, resp->data + sizeof(struct fcgi_record_header),
usr.sbin/slowcgi/slowcgi.c
1060
resp->data_len = n + sizeof(struct fcgi_record_header);
usr.sbin/slowcgi/slowcgi.c
1178
dump_fcgi_record(const char *p, struct fcgi_record_header *h)
usr.sbin/slowcgi/slowcgi.c
1191
dump_fcgi_record_header(const char* p, struct fcgi_record_header *h)
usr.sbin/slowcgi/slowcgi.c
185
struct fcgi_record_header *);
usr.sbin/slowcgi/slowcgi.c
187
struct fcgi_record_header *);
usr.sbin/slowcgi/slowcgi.c
49
(sizeof(struct fcgi_record_header) + FCGI_CONTENT_SIZE + FCGI_PADDING_SIZE)
usr.sbin/slowcgi/slowcgi.c
565
struct fcgi_record_header *header;
usr.sbin/slowcgi/slowcgi.c
568
header = (struct fcgi_record_header*)resp->data;
usr.sbin/slowcgi/slowcgi.c
588
struct fcgi_record_header *header;
usr.sbin/slowcgi/slowcgi.c
595
header = (struct fcgi_record_header*) resp->data;
usr.sbin/slowcgi/slowcgi.c
831
struct fcgi_record_header *h;
usr.sbin/slowcgi/slowcgi.c
833
if (n < sizeof(struct fcgi_record_header))
usr.sbin/slowcgi/slowcgi.c
836
h = (struct fcgi_record_header*) buf;
usr.sbin/slowcgi/slowcgi.c
841
if (n < sizeof(struct fcgi_record_header) + ntohs(h->content_len)
usr.sbin/slowcgi/slowcgi.c
852
parse_begin_request(buf + sizeof(struct fcgi_record_header),
usr.sbin/slowcgi/slowcgi.c
856
parse_params(buf + sizeof(struct fcgi_record_header),
usr.sbin/slowcgi/slowcgi.c
860
parse_stdin(buf + sizeof(struct fcgi_record_header),
usr.sbin/slowcgi/slowcgi.c
868
return (sizeof(struct fcgi_record_header) + ntohs(h->content_len)
usr.sbin/slowcgi/slowcgi.c
999
struct fcgi_record_header *header;