comparison libsip/uas_basic.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 uas_parse_hdrs, a structure that captures
3 * the 5 essential header fields that must be present in every
4 * received request in order for us to be able to respond to it.
5 */
6
7 struct uas_parse_hdrs {
8 char *from;
9 char *to;
10 char *call_id;
11 unsigned cseq_num;
12 char *via;
13 char *error_field;
14 };