comparison libsip/out_msg.h @ 46:5427b26525cd

libsip: beginning to flesh out
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 06 Sep 2022 20:29:44 -0800
parents
children
comparison
equal deleted inserted replaced
45:f1cf80c7e243 46:5427b26525cd
1 /*
2 * Here we define the structure we are going to use for constructing
3 * outgoing SIP messages (UDP packets).
4 */
5
6 #define MAX_SIP_TX_PACKET 1472
7
8 struct sip_msg_out {
9 char buf[MAX_SIP_TX_PACKET];
10 unsigned msg_len;
11 };