view include/rtp_alloc.h @ 220:c798a1762c7c

smpp-test1: take strings on the command line, construct bind req
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 01 Aug 2023 23:29:38 -0800
parents b79d6334f543
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