summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/libwellenreiter/source/sock.hh
blob: afde641b9d95512273cda0889dcde89fa2483d08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* $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 commsock(const char *, int);
int sendcomm(const char *, int, const char *, ...);

#endif /* WLSOCK_HH */