| 735 | } |
| 736 | |
| 737 | static inline char* print_cseq(char* w, str* cseq, str* method, struct cell* t) |
| 738 | { |
| 739 | t->cseq_n.s = w; |
| 740 | /* don't include method name and CRLF -- subsequent |
| 741 | * local requests ACK/CANCEL will add their own */ |
| 742 | t->cseq_n.len = CSEQ_LEN + cseq->len; |
| 743 | w = print_cseq_mini(w, cseq, method); |
| 744 | return w; |
| 745 | } |
| 746 | |
| 747 | /* |
| 748 | * Print Call-ID header field |
no test coverage detected