Fix bug initilising listening port - buffer size variable was not set up.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@6886 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
richard 2000-07-07 17:00:14 +00:00
parent fb3588357e
commit c2505ba3c2
3 changed files with 14 additions and 0 deletions

View file

@ -205,7 +205,12 @@ printf("oneway %d\n", _F_ONEWAY);
{
NSDate *d = [NSDate date];
NSData *sen = [NSMutableData data];
id rep;
[sen setLength: 100000];
rep = [p echoObject: sen];
NSLog(@"Send: 0x%x, Reply: 0x%x, Length: %d", sen, rep, [rep length]);
[NSConnection setDebug: 0];
[NSDistantObject setDebug: 0];
[NSPort setDebug: 0];