gtp_itf.h 2.4 KB
Newer Older
Laurent Thomas's avatar
Laurent Thomas committed
1 2
#ifndef __GTPUNEW_ITF_H__
#define __GTPUNEW_ITF_H__
3

Laurent Thomas's avatar
Laurent Thomas committed
4 5 6 7 8 9 10
#define GTPNOK -1

# define GTPU_HEADER_OVERHEAD_MAX 64
#ifdef __cplusplus
extern "C" {
#endif

Laurent Thomas's avatar
Laurent Thomas committed
11 12 13 14 15 16 17 18 19 20 21
typedef boolean_t (*gtpCallback)(
  protocol_ctxt_t  *ctxt_pP,
  const srb_flag_t     srb_flagP,
  const rb_id_t        rb_idP,
  const mui_t          muiP,
  const confirm_t      confirmP,
  const sdu_size_t     sdu_buffer_sizeP,
  unsigned char *const sdu_buffer_pP,
  const pdcp_transmission_mode_t modeP,
  const uint32_t *sourceL2Id,
  const uint32_t *destinationL2Id);
Laurent THOMAS's avatar
Laurent THOMAS committed
22

Laurent Thomas's avatar
Laurent Thomas committed
23 24 25 26 27 28 29 30 31 32
typedef struct openAddr_s {
  char originHost[HOST_NAME_MAX];
  char originService[HOST_NAME_MAX];
  char destinationHost[HOST_NAME_MAX];
  char destinationService[HOST_NAME_MAX];
  instance_t originInstance;
} openAddr_t;

// the init function create a gtp instance and return the gtp instance id
// the parameter originInstance will be sent back in each message from gtp to the creator
Laurent THOMAS's avatar
Laurent THOMAS committed
33 34 35
void gtpv1uReceiver(int h);
void gtpv1uProcessTimeout(int handle,void *arg);
int gtpv1u_create_s1u_tunnel(const instance_t instance, const gtpv1u_enb_create_tunnel_req_t  *create_tunnel_req,
Laurent THOMAS's avatar
Laurent THOMAS committed
36
                             gtpv1u_enb_create_tunnel_resp_t *create_tunnel_resp);
Laurent THOMAS's avatar
Laurent THOMAS committed
37
int gtpv1u_update_s1u_tunnel(const instance_t instanceP,
Laurent THOMAS's avatar
Laurent THOMAS committed
38 39 40
                             const gtpv1u_enb_create_tunnel_req_t   *create_tunnel_req_pP,
                             const rnti_t prior_rnti
                            );
Laurent THOMAS's avatar
Laurent THOMAS committed
41
int gtpv1u_delete_s1u_tunnel( const instance_t instance, const gtpv1u_enb_delete_tunnel_req_t *const req_pP);
Laurent Thomas's avatar
Laurent Thomas committed
42
int gtpv1u_delete_s1u_tunnel( const instance_t instance, const gtpv1u_enb_delete_tunnel_req_t *const req_pP);
Laurent Thomas's avatar
Laurent Thomas committed
43

Laurent THOMAS's avatar
Laurent THOMAS committed
44
int gtpv1u_create_x2u_tunnel(
Laurent Thomas's avatar
Laurent Thomas committed
45
  const instance_t instanceP,
Laurent Thomas's avatar
Laurent Thomas committed
46 47 48 49 50
  const gtpv1u_enb_create_x2u_tunnel_req_t   *const create_tunnel_req_pP,
  gtpv1u_enb_create_x2u_tunnel_resp_t *const create_tunnel_resp_pP);


// New API
Laurent THOMAS's avatar
Laurent THOMAS committed
51
teid_t newGtpuCreateTunnel(instance_t instance, rnti_t rnti, int incoming_bearer_id, int outgoing_rb_id, teid_t teid,
Laurent Thomas's avatar
Laurent Thomas committed
52
                           transport_layer_addr_t remoteAddr, int port, gtpCallback callBack);
53
void GtpuUpdateTunnelOutgoingTeid(instance_t instance, rnti_t rnti, ebi_t bearer_id, teid_t newOutgoingTeid);
Laurent THOMAS's avatar
Laurent THOMAS committed
54
int newGtpuDeleteAllTunnels(instance_t instance, rnti_t rnti);
Laurent THOMAS's avatar
Laurent THOMAS committed
55
int newGtpuDeleteTunnels(instance_t instance, rnti_t rnti, int nbTunnels, pdusessionid_t *pdusession_id);
Laurent THOMAS's avatar
Laurent THOMAS committed
56 57
instance_t gtpv1Init(openAddr_t context);
void *gtpv1uTask(void *args);
Laurent Thomas's avatar
Laurent Thomas committed
58

Laurent Thomas's avatar
Laurent Thomas committed
59 60 61 62
#ifdef __cplusplus
}
#endif
#endif