aboutsummaryrefslogtreecommitdiffstats
path: root/sdk/net/init.c
blob: 02575a75b1aa0fdd0c0bdc669ea6494d25ccd275 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Needed for "winsock" compatibility only.
 * $Id$
 * Copyright (c) 1997 by Tycho Softworks.
 * For conditions of distribution and reuse see product license.
 */

#include <net/socket.h>

bool	init_socket(void)
{
	return TRUE;
}

void	endsocket(SOCKET so)
{
	shutdown(so, 2);
	close(so);
}