Lines Matching defs:msg
21 apr_status_t ajp_ilink_send(apr_socket_t *sock, ajp_msg_t *msg)
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)
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->buf[hlen]);