winsock stream fixes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@23243 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2006-08-10 09:15:30 +00:00
parent 8fb233e3dc
commit 6f9c159619
5 changed files with 181 additions and 77 deletions

View file

@ -68,12 +68,12 @@
id _delegate; /* Delegate controls operation. */\
NSMutableDictionary *_properties; /* storage for properties */\
BOOL _delegateValid;/* whether the delegate responds*/\
BOOL _unhandledData; /* no read/write since event */\
NSError *_lastError; /* last error occured */\
NSStreamStatus _currentStatus;/* current status */\
NSMutableArray *_modes; /* currently scheduled modes. */\
NSRunLoop *_runloop; /* currently scheduled loop. */\
void *_loopID; /* file descriptor etc */\
void *_loopID; /* file descriptor etc. */\
int _events; /* Signalled events. */\
}
/**
@ -124,7 +124,7 @@ IVARS
- (void) _recordError;
/**
* say whether there is unahdnled data for the stream.
* say whether there is unhandled data for the stream.
*/
- (BOOL) _unhandledData;
@end