Searched defs:msg (Results 1 - 25 of 26) sorted by relevance

12

/httpd/modules/proxy/
H A Dajp_link.c21 apr_status_t ajp_ilink_send(apr_socket_t *sock, ajp_msg_t *msg) argument
27 ajp_msg_end(msg);
29 length = msg->len;
30 buf = (char *)msg->buf;
74 apr_status_t ajp_ilink_receive(apr_socket_t *sock, ajp_msg_t *msg) argument
80 hlen = msg->header_len;
82 status = ilink_read(sock, msg->buf, hlen);
90 status = ajp_msg_check_header(msg, &blen);
98 status = ilink_read(sock, msg->buf + hlen, blen);
111 blen, (int)msg
[all...]
H A Dajp_utils.c28 ajp_msg_t *msg; local
36 rc = ajp_msg_create(r->pool, AJP_PING_PONG_SZ, &msg);
43 rc = ajp_msg_serialize_cping(msg);
50 rc = ajp_ilink_send(sock, msg);
51 ajp_msg_log(r, msg, "ajp_handle_cping_cpong: ajp_ilink_send packet dump");
72 ajp_msg_reuse(msg);
75 rv = ajp_ilink_receive(sock, msg);
82 ajp_msg_log(r, msg, "ajp_handle_cping_cpong: ajp_ilink_receive packet dump");
83 rv = ajp_msg_get_uint8(msg, &result);
H A Dmod_proxy_fdpass.c83 struct msghdr msg; local
98 memset(&msg, 0, sizeof(msg));
100 msg.msg_iov = &iov;
101 msg.msg_iovlen = 1;
113 msg.msg_control = cmsg;
114 msg.msg_controllen = cmsg->cmsg_len;
116 rv = sendmsg(srawsock, &msg, 0);
H A Dajp_header.c214 static apr_status_t ajp_marshal_into_msgb(ajp_msg_t *msg, argument
244 ajp_msg_reset(msg);
246 if (ajp_msg_append_uint8(msg, CMD_AJP13_FORWARD_REQUEST) ||
247 ajp_msg_append_uint8(msg, (apr_byte_t) method) ||
248 ajp_msg_append_string(msg, r->protocol) ||
249 ajp_msg_append_string(msg, uri->path) ||
250 ajp_msg_append_string(msg, r->useragent_ip) ||
251 ajp_msg_append_string(msg, remote_host) ||
252 ajp_msg_append_string(msg, ap_get_server_name(r)) ||
253 ajp_msg_append_uint16(msg, (apr_uint16_
538 ajp_unmarshal_response(ajp_msg_t *msg, request_rec *r, proxy_dir_conf *dconf) argument
673 ajp_msg_t *msg; local
704 ajp_read_header(apr_socket_t *sock, request_rec *r, apr_size_t buffsize, ajp_msg_t **msg) argument
749 ajp_parse_type(request_rec *r, ajp_msg_t *msg) argument
760 ajp_parse_header(request_rec *r, proxy_dir_conf *conf, ajp_msg_t *msg) argument
783 ajp_parse_data(request_rec *r, ajp_msg_t *msg, apr_uint16_t *len, char **ptr) argument
829 ajp_parse_reuse(request_rec *r, ajp_msg_t *msg, apr_byte_t *reuse) argument
854 ajp_alloc_data_msg(apr_pool_t *pool, char **ptr, apr_size_t *len, ajp_msg_t **msg) argument
871 ajp_send_data_msg(apr_socket_t *sock, ajp_msg_t *msg, apr_size_t len) argument
[all...]
H A Dajp_msg.c36 * @param msg AJP Message to dump
42 apr_status_t ajp_msg_dump(apr_pool_t *pool, ajp_msg_t *msg, char *err, argument
49 apr_size_t len = msg->len;
65 err, msg->pos, msg->len, msg->max_size);
81 x = msg->buf[i + j];
91 x = msg->buf[i + j];
111 * @param msg AJP Message to dump
115 apr_status_t ajp_msg_log(request_rec *r, ajp_msg_t *msg, cha argument
149 ajp_msg_check_header(ajp_msg_t *msg, apr_size_t *len) argument
188 ajp_msg_reset(ajp_msg_t *msg) argument
202 ajp_msg_reuse(ajp_msg_t *msg) argument
223 ajp_msg_end(ajp_msg_t *msg) argument
242 ajp_log_overflow(ajp_msg_t *msg, const char *context) argument
258 ajp_msg_append_uint32(ajp_msg_t *msg, apr_uint32_t value) argument
283 ajp_msg_append_uint16(ajp_msg_t *msg, apr_uint16_t value) argument
306 ajp_msg_append_uint8(ajp_msg_t *msg, apr_byte_t value) argument
329 ajp_msg_append_string_ex(ajp_msg_t *msg, const char *value, int convert) argument
367 ajp_msg_append_bytes(ajp_msg_t *msg, const apr_byte_t *value, apr_size_t valuelen) argument
392 ajp_msg_get_uint32(ajp_msg_t *msg, apr_uint32_t *rvalue) argument
417 ajp_msg_get_uint16(ajp_msg_t *msg, apr_uint16_t *rvalue) argument
440 ajp_msg_peek_uint16(ajp_msg_t *msg, apr_uint16_t *rvalue) argument
463 ajp_msg_peek_uint8(ajp_msg_t *msg, apr_byte_t *rvalue) argument
480 ajp_msg_get_uint8(ajp_msg_t *msg, apr_byte_t *rvalue) argument
499 ajp_msg_get_string(ajp_msg_t *msg, const char **rvalue) argument
528 ajp_msg_get_bytes(ajp_msg_t *msg, apr_byte_t **rvalue, apr_size_t *rvalue_len) argument
561 ajp_msg_t *msg = (ajp_msg_t *)apr_pcalloc(pool, sizeof(ajp_msg_t)); local
609 ajp_msg_serialize_ping(ajp_msg_t *msg) argument
630 ajp_msg_serialize_cping(ajp_msg_t *msg) argument
[all...]
H A Dmod_proxy_ajp.c172 ajp_msg_t *msg; local
234 status = ajp_alloc_data_msg(r->pool, &buff, &bufsiz, &msg);
273 " at %" APR_SIZE_T_FMT ")", bufsiz, msg->pos);
289 status = ajp_send_data_msg(conn->sock, msg, bufsiz);
290 ajp_msg_log(r, msg, "First ajp_send_data_msg: ajp_ilink_send packet dump");
317 * Sending an empty data msg doesn't help either as it does
416 ajp_msg_reset(msg);
418 status = ajp_send_data_msg(conn->sock, msg, bufsiz);
419 ajp_msg_log(r, msg, "ajp_send_data_msg after CMD_AJP13_GET_BODY_CHUNK: ajp_ilink_send packet dump");
H A Dmod_serf.c769 const char *msg; member in struct:hb_table_baton_t
776 b->msg = apr_psprintf(b->p,
796 b.msg = NULL;
800 if (b.msg) {
801 return b.msg;
1010 b->msg = apr_psprintf(b->p,
1030 b.msg = NULL;
1034 if (b.msg) {
1035 return b.msg;
/httpd/modules/filters/
H A Dregexp.c57 static void comperr(sed_commands_t *commands, char *msg);
63 static void comperr(sed_commands_t *commands, char *msg) argument
65 command_errf(commands, msg, commands->linebuf);
H A Dmod_charset_lite.c475 const char *msg; local
482 msg = APLOGNO(02193) "xlate filter - a built-in restriction was encountered";
486 msg = APLOGNO(02194) "xlate filter - an input character was invalid";
490 msg = APLOGNO(02195) "xlate filter - bucket read routine failed";
503 msg = msgbuf;
506 msg = APLOGNO(02197) "xlate filter - an error occurred in a lower filter";
509 msg = APLOGNO(02198) "xlate filter - returning error";
511 ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, f->r, "%s", msg);
H A Dmod_include.c4106 const char *msg)
4109 conf->undefined_echo = msg;
4115 const char *msg)
4118 conf->default_error_msg = msg;
4105 set_undefined_echo(cmd_parms *cmd, void *mconfig, const char *msg) argument
4114 set_default_error_msg(cmd_parms *cmd, void *mconfig, const char *msg) argument
/httpd/modules/loggers/
H A Dmod_log_debug.c63 const char *msg, *err; local
77 msg = ap_expr_str_exec(r, entry->msg_expr, &err);
83 msg, hookname, entry->msg_expr->filename,
86 ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r, "%s", msg);
/httpd/modules/lua/
H A Dlua_config.c160 const char *msg; local
167 msg = luaL_checkstring(L, 2);
169 cmd->server, "%s", msg);
H A Dlua_vmprep.c67 const char *msg)
72 ap_log_perror(APLOG_MARK, level, 0, r, "Lua Stack Dump: [%s]", msg);
314 const char *msg = lua_tostring(L, -1); local
316 "Failed to init LuaJIT: %s", msg);
H A Dlua_request.c50 void ap_lua_rstack_dump(lua_State *L, request_rec *r, const char *msg) argument
54 ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r, APLOGNO(01484) "Lua Stack Dump: [%s]", msg);
1888 const char *msg; local
1895 msg = luaL_checkstring(L, 2);
1897 r, "%s", msg);
/httpd/modules/ssl/
H A Dssl_ct_log_config.c32 const char **msg)
42 if (msg) {
43 *msg = "SQLite3 driver cannot be loaded";
31 log_config_readable(apr_pool_t *p, const char *logconfig, const char **msg) argument
H A Dssl_engine_kernel.c1541 const char *msg)
1545 (mySrvConfigFromConn(c))->vhost_id, msg);
1539 modssl_proxy_info_log(conn_rec *c, X509_INFO *info, const char *msg) argument
H A Dmod_ssl_ct.c1390 const char *msg = NULL; local
1391 if (!log_config_readable(pconf, sconf->log_config_fname, &msg)) {
1395 if (msg) {
1397 "%s", msg);
/httpd/server/mpm/winnt/
H A Dservice.c118 char *msg = "Note the errors or messages above, " local
130 if (!WriteConsole(hConErr, msg, (DWORD)strlen(msg), &result, NULL)
/httpd/server/
H A Dutil_script.c451 const char *msg = "Premature end of script headers"; local
453 msg = "End of script output before headers";
455 "%s: %s", msg,
H A Dutil_expr_scan.c349 static void yy_fatal_error (yyconst char msg[] ,yyscan_t yyscanner );
607 #define YY_FATAL_ERROR(msg) \
611 "%s, exiting", msg); \
617 #define PERROR(msg) do { yyextra->error2 = msg ; return T_ERROR; } while (0)
832 #define YY_FATAL_ERROR(msg) yy_fatal_error( msg , yyscanner)
1222 char *msg = apr_psprintf(yyextra->pool, variable
1224 PERROR(msg); variable
1528 char *msg variable
1529 PERROR(msg); variable
[all...]
H A Dconfig.c1633 const char *msg; local
1639 if ((msg = ap_soak_end_container(cmd, cmd_name)) != NULL) {
1640 return msg;
/httpd/server/mpm/prefork/
H A Dprefork.c247 const char *msg = "couldn't grab the accept mutex"; local
251 ap_log_error(APLOG_MARK, APLOG_DEBUG, rv, ap_server_conf, APLOGNO(00143) "%s", msg);
255 ap_log_error(APLOG_MARK, APLOG_EMERG, rv, ap_server_conf, APLOGNO(00144) "%s", msg);
266 const char *msg = "couldn't release the accept mutex"; local
270 ap_log_error(APLOG_MARK, APLOG_DEBUG, rv, ap_server_conf, APLOGNO(00145) "%s", msg);
277 ap_log_error(APLOG_MARK, APLOG_EMERG, rv, ap_server_conf, APLOGNO(00146) "%s", msg);
/httpd/modules/aaa/
H A Dmod_auth_digest.c225 static void log_error_and_cleanup(char *msg, apr_status_t sts, server_rec *s) argument
229 "disabled", msg);
/httpd/support/win32/
H A DApacheMonitor.c1549 MSG msg; local
1651 while (GetMessage(&msg, NULL, 0, 0) == TRUE)
1653 TranslateMessage(&msg);
1654 DispatchMessage(&msg);
/httpd/modules/dav/main/
H A Dmod_dav.c1007 char *msg = ap_escape_html(r->pool, r->uri); local
1010 msg = apr_psprintf(r->pool, "Timeout reading the body "
1011 "(URI: %s)", msg);
1015 msg = apr_psprintf(r->pool,
1017 " the request body (URI: %s)", msg);
1019 err = dav_new_error(r->pool, http_err, 0, rc, msg);
3508 /* This supplies additional information for the default msg. */
3555 /* This supplies additional info for the default msg. */
3708 /* This supplies additional information for the default msg. */
4114 /* This supplies additional information for the default msg
[all...]

Completed in 2568 milliseconds

12