(svn r15972) -Codechange: remove unneeded parameter

This commit is contained in:
rubidium
2009-04-08 00:03:05 +00:00
parent 2a6e9288fd
commit c0f8214218
4 changed files with 12 additions and 13 deletions

View File

@@ -217,12 +217,11 @@ public:
/**
* Make the given socket listen.
* @param family the type of 'protocol' (IPv4, IPv6)
* @param socktype the type of socket (TCP, UDP, etc)
* @param sockets the list of sockets to add the sockets to
* @return the socket (if sockets != NULL)
*/
SOCKET Listen(int family, int socktype, SocketList *sockets = NULL);
SOCKET Listen(int socktype, SocketList *sockets = NULL);
};
#endif /* ENABLE_NETWORK */