comparison libsip/out_msg.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 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 };