This method is used to send messages that are not */ part of the XML scenario */
| 1507 | /* This method is used to send messages that are not */ |
| 1508 | /* part of the XML scenario */ |
| 1509 | void call::sendBuffer(char * msg, int len) |
| 1510 | { |
| 1511 | /* call send_raw but with a special scenario index */ |
| 1512 | if (send_raw(msg, -1, len) < 0) { |
| 1513 | if (sendbuffer_warn) { |
| 1514 | ERROR_NO("Error sending raw message"); |
| 1515 | } else { |
| 1516 | WARNING_NO("Error sending raw message"); |
| 1517 | } |
| 1518 | } |
| 1519 | } |
| 1520 | |
| 1521 | char * call::get_header_field_code(const char *msg, const char * name) |
| 1522 | { |
nothing calls this directly
no test coverage detected