00001 /* 00002 * Copyright (c) 2008 - 2010 00003 * Jonathan Schleifer <js@webkeks.org> 00004 * 00005 * All rights reserved. 00006 * 00007 * This file is part of ObjFW. It may be distributed under the terms of the 00008 * Q Public License 1.0, which can be found in the file LICENSE included in 00009 * the packaging of this file. 00010 */ 00011 00012 #import "OFStream.h" 00013 00014 #ifdef _WIN32 00015 # define _WIN32_WINNT 0x0501 00016 # include <winsock2.h> 00017 #endif 00018 00022 @interface OFSocket: OFStream 00023 { 00024 #ifndef _WIN32 00025 int sock; 00026 #else 00027 SOCKET sock; 00028 #endif 00029 BOOL eos; 00030 } 00031 00035 + socket; 00036 00040 - setBlocking: (BOOL)enable; 00041 @end