MCPcopy Index your code
hub / github.com/apache/httpd / ap_rputc

Function ap_rputc

server/protocol.c:2117–2129  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2115}
2116
2117AP_DECLARE(int) ap_rputc(int c, request_rec *r)
2118{
2119 char c2 = (char)c;
2120
2121 if (r->connection->aborted) {
2122 return -1;
2123 }
2124
2125 if (buffer_output(r, &c2, 1) != APR_SUCCESS)
2126 return -1;
2127
2128 return c;
2129}
2130
2131AP_DECLARE(int) ap_rwrite(const void *buf, int nbyte, request_rec *r)
2132{

Callers 4

output_directoriesFunction · 0.85
put_int_flush_rightFunction · 0.85
status_handlerFunction · 0.85
lua_websocket_writeFunction · 0.85

Calls 1

buffer_outputFunction · 0.85

Tested by

no test coverage detected