diff -r 8267d5c429c4 -r 5936db2c1987 TCP/TCPWriter.m --- a/TCP/TCPWriter.m Sat May 24 13:26:02 2008 -0700 +++ b/TCP/TCPWriter.m Sun May 25 13:43:03 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;