enb_agent_common.h 2.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
/*******************************************************************************
    OpenAirInterface
    Copyright(c) 1999 - 2014 Eurecom

    OpenAirInterface is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.


    OpenAirInterface is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with OpenAirInterface.The full GNU General Public License is
   included in this distribution in the file called "COPYING". If not,
   see <http://www.gnu.org/licenses/>.

  Contact Information
  OpenAirInterface Admin: openair_admin@eurecom.fr
  OpenAirInterface Tech : openair_tech@eurecom.fr
  OpenAirInterface Dev  : openair4g-devel@lists.eurecom.fr

  Address      : Eurecom, Compus SophiaTech 450, route des chappes, 06451 Biot, France.

 *******************************************************************************/

/*! \file 
 * \brief 
 * \author 
 * \date 2016
 * \version 0.1
 */



#ifndef ENB_AGENT_COMMON_H_
#define ENB_AGENT_COMMON_H_


#include "header.pb-c.h"
#include "progran.pb-c.h"
#include "stats_messages.pb-c.h"
#include "stats_common.pb-c.h"

#define PROGRAN_VERSION 0

typedef int (*enb_agent_message_decoded_callback)(
	uint32_t xid,
52
	const void *params,
53
	Protocol__ProgranMessage **msg
54 55 56 57
);

typedef int (*enb_agent_message_destruction_callback)(
	Protocol__ProgranMessage *msg
58 59 60 61 62 63 64 65 66
);

typedef int32_t  err_code_t; 

int enb_agent_serialize_message(Protocol__ProgranMessage *msg, void **buf, int *size);
int enb_agent_deserialize_message(void *data, int size, Protocol__ProgranMessage **msg);

int prp_create_header(uint32_t xid, Protocol__PrpType type, Protocol__PrpHeader **header);

67
int enb_agent_hello(uint32_t xid, const void *params, Protocol__ProgranMessage **msg);
68 69
int enb_agent_destroy_hello(Protocol__ProgranMessage *msg);

70
int enb_agent_echo_request(uint32_t xid, const void *params, Protocol__ProgranMessage **msg);
71 72
int enb_agent_destroy_echo_request(Protocol__ProgranMessage *msg);

73
int enb_agent_echo_reply(uint32_t xid, const void *params, Protocol__ProgranMessage **msg);
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
int enb_agent_destroy_echo_reply(Protocol__ProgranMessage *msg);


Protocol__ProgranMessage* enb_agent_handle_message (uint32_t xid, 
						    uint8_t *data, 
						    uint32_t size);

void * enb_agent_send_message(uint32_t xid, 
			      Protocol__ProgranMessage *msg, 
			      uint32_t * size);


#endif