[package] busybox: Check if an SSH daemon is enabled before disabling telnet access...
[openwrt/svn-archive/archive.git] / package / tapi_sip / src / stun.h
1 #ifndef __STUN_H__
2 #define __STUN_H__
3
4 #include <stdint.h>
5
6 struct stun_client;
7
8 struct stun_client *stun_client_alloc(const char *hostname, uint16_t port);
9 void stun_client_free(struct stun_client *);
10 int stun_client_resolve(struct stun_client *stun, int sockfd, struct sockaddr *addr);
11
12 #endif