standardise listen backlog

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@31455 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2010-10-01 09:22:52 +00:00
parent 8af7e6bf3a
commit 8c7b1d496a
7 changed files with 25 additions and 7 deletions

View file

@ -44,6 +44,7 @@
#import "Foundation/NSFileManager.h"
#import "Foundation/NSProcessInfo.h"
#import "GSNetwork.h"
#import "GSPrivate.h"
#import "GSPortPrivate.h"
@ -1300,7 +1301,7 @@ typedef struct {
{
DESTROY(port);
}
else if (listen(desc, 128) < 0)
else if (listen(desc, GSBACKLOG) < 0)
{
NSLog(@"unable to listen on port - %@", [NSError _last]);
(void) close(desc);