FreeCalypso > hg > sipout-test-utils
view include/rtp_alloc.h @ 8:eaf0e8f81a22
test-fsk: don't feed RTP to modem Rx during ringing
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Wed, 06 Mar 2024 21:33:49 -0800 |
| parents | 35c0d9f03c0a |
| children |
line wrap: on
line source
/* * This header file defines the ad hoc control interface * to themwi-rtp-mgr over a dedicated local socket. */ struct rtp_alloc_req { uint32_t transact_ref; uint32_t ep_type; }; struct rtp_alloc_resp { uint32_t transact_ref; uint32_t res; struct sockaddr_storage gsm_addr; struct sockaddr_storage pstn_addr; }; #define RTP_ALLOC_OK 0 #define RTP_ALLOC_ERR_PARAM 1 #define RTP_ALLOC_ERR_RSRC 2
