aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2020-06-13 21:36:56 +0200
committerlaforge <laforge@osmocom.org>2020-10-06 11:36:45 +0000
commit650a0c31a78856566c897e187492b693a1b259f6 (patch)
tree39bcfe43dbb1b10122f99496444bcdb997ca9727 /include
parent90e0c205b5ff4e94c7705cc8f81ccb510c0eb6df (diff)
Introduce the new OML NM_ATT_OSMO_NS_LINK_CFG to configure IPv6 NSVC for PCU
With PCU interface version 10 it supports IPv6 NSVC. The new OML IE NM_ATT_OSMO_NS_LINK_CFG allows to configure IPv6 NSVC. Change-Id: I310699fabbfec4255f0474f31717f215c1201eca
Diffstat (limited to 'include')
-rw-r--r--include/osmo-bts/bts.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/osmo-bts/bts.h b/include/osmo-bts/bts.h
index ccbcf9a0..4e496b59 100644
--- a/include/osmo-bts/bts.h
+++ b/include/osmo-bts/bts.h
@@ -2,6 +2,7 @@
#define _BTS_H
#include <osmocom/core/rate_ctr.h>
+#include <osmocom/core/socket.h>
#include <osmo-bts/gsm_data.h>
#include <osmo-bts/bts_trx.h>
@@ -69,9 +70,8 @@ struct gsm_bts_gprs_nsvc {
* via OML from BSC */
int id;
uint16_t nsvci;
- uint16_t local_port; /* on the BTS */
- uint16_t remote_port; /* on the SGSN */
- uint32_t remote_ip; /* on the SGSN */
+ struct osmo_sockaddr local; /* on the BTS */
+ struct osmo_sockaddr remote; /* on the SGSN */
struct gsm_abis_mo mo;
};