blob: e1b587e7105e151d3a53f8495e1ec945663a66c0 [file] [log] [blame]
Pablo Neira Ayuso95306002012-08-22 16:43:59 +02001#ifndef _LAPD_PCAP_H_
2#define _LAPD_PCAP_H_
3
4#define OSMO_LAPD_PCAP_INPUT 0
5#define OSMO_LAPD_PCAP_OUTPUT 1
6
7int osmo_pcap_lapd_open(char *filename, mode_t mode);
Harald Welte47bee5b2016-07-04 09:53:44 +02008int osmo_pcap_lapd_set_fd(int fd);
Pablo Neira Ayuso95306002012-08-22 16:43:59 +02009int osmo_pcap_lapd_write(int fd, int direction, struct msgb *msg);
10int osmo_pcap_lapd_close(int fd);
11
12#endif