diff include/rtp_alloc_if.h @ 1:560a3765ab30

include: hg mv rtp_alloc.h rtp_alloc_if.h The reason for this rename is that we anticipate having additional rtp_alloc_*.h header files for client library functions that work with RTP allocation via themwi-rtp-mgr.
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 27 May 2024 18:35:39 +0000
parents include/rtp_alloc.h@9e7e9ba22e42
children 764bbf72392f
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/include/rtp_alloc_if.h	Mon May 27 18:35:39 2024 +0000
@@ -0,0 +1,31 @@
+/*
+ * This header file defines the ad hoc control interface
+ * to themwi-rtp-mgr over a dedicated local socket.
+ */
+
+#pragma once
+
+struct rtp_alloc_req {
+	uint32_t	transact_ref;
+	uint32_t	ep_type;
+};
+
+#define	RTP_ALLOC_DO_GSM1	1
+#define	RTP_ALLOC_DO_PSTN	2
+#define	RTP_ALLOC_DO_GSM2	4
+
+#define	RTP_ALLOC_TYPE_GSM	RTP_ALLOC_DO_GSM1
+#define	RTP_ALLOC_TYPE_PSTN	RTP_ALLOC_DO_PSTN
+#define	RTP_ALLOC_TYPE_GSM2PSTN	(RTP_ALLOC_DO_GSM1 | RTP_ALLOC_DO_PSTN)
+#define	RTP_ALLOC_TYPE_GSM2GSM	(RTP_ALLOC_DO_GSM1 | RTP_ALLOC_DO_GSM2)
+
+struct rtp_alloc_resp {
+	uint32_t	transact_ref;
+	uint32_t	res;
+	struct sockaddr_storage gsm_addr;
+	struct sockaddr_storage pstn_addr;	/* also used for 2nd GSM */
+};
+
+#define	RTP_ALLOC_OK		0
+#define	RTP_ALLOC_ERR_PARAM	1
+#define	RTP_ALLOC_ERR_RSRC	2