* Print Call-ID header field * created an extra function for pure header field creation */
| 749 | * created an extra function for pure header field creation |
| 750 | */ |
| 751 | char* print_callid_mini(char* target, str callid) { |
| 752 | append_string(target, CALLID, CALLID_LEN); |
| 753 | append_string(target, callid.s, callid.len); |
| 754 | append_string(target, CRLF, CRLF_LEN); |
| 755 | return target; |
| 756 | } |
| 757 | |
| 758 | static inline char* print_callid(char* w, dlg_t* dialog, struct cell* t) |
| 759 | { |
no outgoing calls
no test coverage detected