osmo-msc/openbsc/include/openbsc/socket.h

15 lines
320 B
C
Raw Normal View History

2010-05-19 12:11:05 +00:00
#ifndef _BSC_SOCKET_H
#define _BSC_SOCKET_H
#include <osmocom/core/select.h>
2010-05-19 12:11:05 +00:00
#ifndef IPPROTO_GRE
#define IPPROTO_GRE 47
#endif
int make_sock(struct bsc_fd *bfd, int proto,
uint32_t ip, uint16_t port, int priv_nr,
int (*cb)(struct bsc_fd *fd, unsigned int what), void *data);
2010-05-19 12:11:05 +00:00
#endif /* _BSC_SOCKET_H */