comparison src/c/cgi.c @ 863:305bc0a431de

.msgs processing in FastCGI
author Adam Chlipala <adamc@hcoop.net>
date Sat, 27 Jun 2009 17:50:31 -0400
parents 86ec89baee01
children db52c32dbe42
comparison
equal deleted inserted replaced
862:66dbf3953758 863:305bc0a431de
101 101
102 body[body_pos] = 0; 102 body[body_pos] = 0;
103 rr = uw_request(rc, ctx, method, path, query_string, body, body_pos, 103 rr = uw_request(rc, ctx, method, path, query_string, body, body_pos,
104 on_success, on_failure, 104 on_success, on_failure,
105 NULL, log_error, log_debug, 105 NULL, log_error, log_debug,
106 -1); 106 -1, NULL, NULL);
107 uw_print(ctx, 1); 107 uw_print(ctx, 1);
108 108
109 if (rr == SERVED) 109 if (rr == SERVED)
110 return 0; 110 return 0;
111 else 111 else