mirror of https://github.com/pvnis/srsRAN_4G.git
move ue gw interfaces to separate interfaces header file
parent
186285ffd3
commit
ea04104e8e
@ -0,0 +1,67 @@
|
||||
/**
|
||||
*
|
||||
* \section COPYRIGHT
|
||||
*
|
||||
* Copyright 2013-2020 Software Radio Systems Limited
|
||||
*
|
||||
* By using this file, you agree to the terms and conditions set
|
||||
* forth in the LICENSE file which can be found at the top level of
|
||||
* the distribution.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef SRSLTE_UE_GW_INTERFACES_H
|
||||
#define SRSLTE_UE_GW_INTERFACES_H
|
||||
|
||||
#include "srslte/asn1/liblte_mme.h"
|
||||
|
||||
namespace srsue {
|
||||
|
||||
class gw_interface_nas
|
||||
{
|
||||
public:
|
||||
virtual int setup_if_addr(uint32_t eps_bearer_id,
|
||||
uint32_t lcid,
|
||||
uint8_t pdn_type,
|
||||
uint32_t ip_addr,
|
||||
uint8_t* ipv6_if_id,
|
||||
char* err_str) = 0;
|
||||
virtual int apply_traffic_flow_template(const uint8_t& eps_bearer_id,
|
||||
const uint8_t& lcid,
|
||||
const LIBLTE_MME_TRAFFIC_FLOW_TEMPLATE_STRUCT* tft) = 0;
|
||||
|
||||
typedef enum {
|
||||
TEST_LOOP_INACTIVE = 0,
|
||||
TEST_LOOP_MODE_A_ACTIVE,
|
||||
TEST_LOOP_MODE_B_ACTIVE,
|
||||
TEST_LOOP_MODE_C_ACTIVE
|
||||
} test_loop_mode_state_t;
|
||||
|
||||
/**
|
||||
* Updates the test loop mode. The IP delay parameter is only valid for Mode B.
|
||||
* @param mode
|
||||
* @param ip_pdu_delay_ms The PDU delay in ms
|
||||
*/
|
||||
virtual void set_test_loop_mode(const test_loop_mode_state_t mode, const uint32_t ip_pdu_delay_ms = 0) = 0;
|
||||
};
|
||||
|
||||
class gw_interface_rrc
|
||||
{
|
||||
public:
|
||||
virtual void add_mch_port(uint32_t lcid, uint32_t port) = 0;
|
||||
virtual int update_lcid(uint32_t eps_bearer_id, uint32_t new_lcid) = 0;
|
||||
};
|
||||
|
||||
class gw_interface_pdcp
|
||||
{
|
||||
public:
|
||||
virtual void write_pdu(uint32_t lcid, srslte::unique_byte_buffer_t pdu) = 0;
|
||||
virtual void write_pdu_mch(uint32_t lcid, srslte::unique_byte_buffer_t pdu) = 0;
|
||||
};
|
||||
|
||||
class gw_interface_stack : public gw_interface_nas, public gw_interface_rrc, public gw_interface_pdcp
|
||||
{};
|
||||
|
||||
} // namespace srsue
|
||||
|
||||
#endif // SRSLTE_UE_GW_INTERFACES_H
|
Loading…
Reference in New Issue