aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2020-09-16 03:22:06 +0200
committerAlexander Couzens <lynxis@fe80.eu>2020-09-16 03:24:55 +0200
commit40a9e603b9179ce7193344797997a4bc6f01bd72 (patch)
tree7a2b8b8e42cf8a0780d0db2d0eda21cdc1f298e6 /include
parent38aaa10ed494f788be79aa70a4892f22cd8e4bfa (diff)
Revert "pcuif_proto: version 0xa: add support for IPv6 NSVCs"
This reverts commit 38aaa10ed494f788be79aa70a4892f22cd8e4bfa. It was to early because the frequency hopping wasn't ready to be merged. Change-Id: Ibf055d5adfd9bffaaf51cb8468c79be597467e0f
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/pcu/pcuif_proto.h14
1 files changed, 2 insertions, 12 deletions
diff --git a/include/osmocom/pcu/pcuif_proto.h b/include/osmocom/pcu/pcuif_proto.h
index 983a4c4e..e88607e6 100644
--- a/include/osmocom/pcu/pcuif_proto.h
+++ b/include/osmocom/pcu/pcuif_proto.h
@@ -2,11 +2,10 @@
#define _PCUIF_PROTO_H
#include <osmocom/gsm/l1sap.h>
-#include <arpa/inet.h>
#define PCU_SOCK_DEFAULT "/tmp/pcu_bts"
-#define PCU_IF_VERSION 0x0a
+#define PCU_IF_VERSION 0x09
#define TXT_MAX_LEN 128
/* msg_type */
@@ -51,11 +50,6 @@
#define PCU_IF_FLAG_MCS8 (1 << 27)
#define PCU_IF_FLAG_MCS9 (1 << 28)
-/* NSVC address type */
-#define PCU_IF_ADDR_TYPE_UNSPEC 0x00 /* No address - empty entry */
-#define PCU_IF_ADDR_TYPE_IPV4 0x04 /* IPv4 address */
-#define PCU_IF_ADDR_TYPE_IPV6 0x29 /* IPv6 address */
-
enum gsm_pcu_if_text_type {
PCU_VERSION,
PCU_OML_ALERT,
@@ -161,11 +155,7 @@ struct gsm_pcu_if_info_ind {
uint16_t nsvci[2];
uint16_t local_port[2];
uint16_t remote_port[2];
- uint8_t address_type[2];
- union {
- struct in_addr v4;
- struct in6_addr v6;
- } remote_ip[2];
+ uint32_t remote_ip[2];
} __attribute__ ((packed));
struct gsm_pcu_if_act_req {