Changeset View
Changeset View
Standalone View
Standalone View
lldb/trunk/include/lldb/Host/Socket.h
Show All 25 Lines | |||||
#endif | #endif | ||||
namespace llvm { | namespace llvm { | ||||
class StringRef; | class StringRef; | ||||
} | } | ||||
namespace lldb_private { | namespace lldb_private { | ||||
#if defined(_MSC_VER) | #if defined(_WIN32) | ||||
typedef SOCKET NativeSocket; | typedef SOCKET NativeSocket; | ||||
#else | #else | ||||
typedef int NativeSocket; | typedef int NativeSocket; | ||||
#endif | #endif | ||||
class Socket : public IOObject { | class Socket : public IOObject { | ||||
public: | public: | ||||
enum SocketProtocol { | enum SocketProtocol { | ||||
▲ Show 20 Lines • Show All 87 Lines • Show Last 20 Lines |