blob: 6969748381c60ab29410a6aa1ef1d42b26475c7b [file] [log] [blame]
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001#ifndef _INTERNAL_H_
2#define _INTERNAL_H_
3
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +02004#include <stdint.h>
5
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +02006/* talloc context for libosmo-abis. */
7extern void *libosmo_abis_ctx;
8
9/* use libosmo_abis_init, this is only for internal use. */
10void e1inp_init(void);
11
Pablo Neira Ayuso35809d62011-06-07 18:12:01 +020012/* hsl requires these functions defined in ipaccess driver. */
Pablo Neira Ayuso4647cad2011-07-02 17:57:58 +020013struct msgb;
Pablo Neira Ayuso35809d62011-06-07 18:12:01 +020014void ipaccess_prepend_header(struct msgb *msg, int proto);
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +020015struct msgb *ipa_msg_alloc(int headroom);
16void ipa_msg_push_header(struct msgb *msg, uint8_t proto);
Pablo Neira Ayuso35809d62011-06-07 18:12:01 +020017
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020018#endif