| 242 | } |
| 243 | |
| 244 | static APR_INLINE int ajp_log_overflow(ajp_msg_t *msg, const char *context) |
| 245 | { |
| 246 | ap_log_error(APLOG_MARK, APLOG_ERR, 0, NULL, APLOGNO(03229) |
| 247 | "%s(): BufferOverflowException %" APR_SIZE_T_FMT |
| 248 | " %" APR_SIZE_T_FMT, |
| 249 | context, msg->pos, msg->len); |
| 250 | return AJP_EOVERFLOW; |
| 251 | } |
| 252 | |
| 253 | /** |
| 254 | * Add an unsigned 32bits value to AJP Message |
no test coverage detected