-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinet_sockets.h
More file actions
16 lines (13 loc) · 839 Bytes
/
inet_sockets.h
File metadata and controls
16 lines (13 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*************************************************************************\
* Copyright (C) Michael Kerrisk, 2017. *
* *
* This program is free software. You may use, modify, and redistribute it *
* under the terms of the GNU Lesser General Public License as published *
* by the Free Software Foundation, either version 3 or (at your option) *
* any later version. This program is distributed without any warranty. *
* See the files COPYING.lgpl-v3 and COPYING.gpl-v3 for details. *
\*************************************************************************/
#ifndef INET_SOCKETS_H
#define INET_SOCKETS_H /* Prevent accidental double inclusion */
int openTcpServerSocket(int backlog, int port);
#endif