summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/libwellenreiter/source/wl_sock.hh
blob: 6ddbaef927aee3ea1d5dc475d13f1507e5fb3d78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* $id */

#ifndef WLSOCK_HH
#define WLSOCK_HH

#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <signal.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <errno.h>

int wl_setupsock(const char *, int);
int wl_send(const char *, int, const char *, ...);
int wl_recv(int *, char *, int);

#endif /* WLSOCK_HH */