* Serialize in an AJP Message a PING command * * +-----------------------+ * | PING CMD (1 byte) | * +-----------------------+ * * @param smsg AJP message to put serialized message * @return APR_SUCCESS or error */
| 614 | * @return APR_SUCCESS or error |
| 615 | */ |
| 616 | apr_status_t ajp_msg_serialize_ping(ajp_msg_t *msg) |
| 617 | { |
| 618 | apr_status_t rc; |
| 619 | ajp_msg_reset(msg); |
| 620 | |
| 621 | if ((rc = ajp_msg_append_uint8(msg, CMD_AJP13_PING)) != APR_SUCCESS) |
| 622 | return rc; |
| 623 | |
| 624 | return APR_SUCCESS; |
| 625 | } |
| 626 | |
| 627 | /** |
| 628 | * Serialize in an AJP Message a CPING command |
nothing calls this directly
no test coverage detected