| 2557 | |
| 2558 | |
| 2559 | char* call::createSendingMessage(SendingMessage *src, int P_index, int *msgLen) |
| 2560 | { |
| 2561 | static char msg_buffer[SIPP_MAX_MSG_SIZE+2]; |
| 2562 | return createSendingMessage(src, P_index, msg_buffer, sizeof(msg_buffer), msgLen); |
| 2563 | } |
| 2564 | |
| 2565 | char* call::createSendingMessage(SendingMessage *src, int P_index, char *msg_buffer, int buf_len, int *msgLen) |
| 2566 | { |
nothing calls this directly
no test coverage detected