/* * Needed for "winsock" compatibility only. * $Id$ * Copyright (c) 1997 by Tycho Softworks. * For conditions of distribution and reuse see product license. */ #include bool init_socket(void) { return TRUE; } void endsocket(SOCKET so) { shutdown(so, 2); close(so); }