diff -r 8267d5c429c4 -r 6f539dd9921c TCP/TCPWriter.m --- a/TCP/TCPWriter.m Sat May 24 13:26:02 2008 -0700 +++ b/TCP/TCPWriter.m Thu May 29 16:40:36 2008 -0700 @@ -30,19 +30,6 @@ } -- (id) propertyForKey: (CFStringRef)cfStreamProperty -{ - CFTypeRef value = CFWriteStreamCopyProperty((CFWriteStreamRef)_stream,cfStreamProperty); - return [(id)CFMakeCollectable(value) autorelease]; -} - -- (void) setProperty: (id)value forKey: (CFStringRef)cfStreamProperty -{ - if( ! CFWriteStreamSetProperty((CFWriteStreamRef)_stream,cfStreamProperty,(CFTypeRef)value) ) - Warn(@"%@ didn't accept property '%@'", self,cfStreamProperty); -} - - - (BOOL) isBusy { return _currentData || _queue.count > 0;