aboutsummaryrefslogtreecommitdiffstats
path: root/socket.h
blob: 11d9e29676e2c59b239a8b5726acb6598ac2bc78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * socket.h -- declarations for socket library functions
 *
 * For license terms, see the file COPYING in this directory.
 */

#ifndef SOCKET__
#define SOCKET__

/* Create a new client socket; returns (FILE *)NULL on error */
FILE *sockopen(char *host, int clientPort);

#endif /* SOCKET__ */