mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-01-21 05:01:06 +02:00
6ea7ec75d2
* adds a rewrite of the tapi drivers + sip app. this is the result of lars' gsoc 2010 project, Thanks ! git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23840 3c298f89-4303-0410-b956-a3cf2f4a3e73
13 lines
296 B
C
13 lines
296 B
C
#ifndef __STUN_H__
|
|
#define __STUN_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
struct stun_client;
|
|
|
|
struct stun_client *stun_client_alloc(const char *hostname, uint16_t port);
|
|
void stun_client_free(struct stun_client *);
|
|
int stun_client_resolve(struct stun_client *stun, int sockfd, struct sockaddr *addr);
|
|
|
|
#endif
|