FreeCalypso > hg > themwi-system-sw
comparison libsip/grok_from.h @ 51:36a30349b490
sip-in: parse INVITE From header
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 07 Sep 2022 17:53:10 -0800 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
50:daf1c26d7ae2 | 51:36a30349b490 |
---|---|
1 /* | |
2 * Here we define the structure used to capture the result | |
3 * of From header field parsing. | |
4 */ | |
5 | |
6 struct grok_from { | |
7 char *uri; | |
8 unsigned uri_len; | |
9 char *user; | |
10 unsigned user_len; | |
11 char *cnam; | |
12 unsigned cnam_len; | |
13 int cnam_quoted; | |
14 }; |