FreeCalypso > hg > sipout-test-utils
comparison libsip/resp_ident.h @ 0:35c0d9f03c0a
beginning with sipout-test-voice,
a copy of sip-manual-out from themwi-system-sw
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 03 Mar 2024 23:20:19 -0800 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:35c0d9f03c0a |
---|---|
1 /* | |
2 * Here we define struct sip_resp_ident, a structure that captures | |
3 * Call-ID and CSeq headers from initial parsing of SIP responses, | |
4 * allowing these responses to be matched with call state and | |
5 * with UAC requests that elicited them. | |
6 */ | |
7 | |
8 struct sip_resp_ident { | |
9 char *call_id; | |
10 unsigned cseq_num; | |
11 char *cseq_method; | |
12 char *error_field; | |
13 }; |