diff options
Diffstat (limited to 'include/Socket.h')
-rw-r--r-- | include/Socket.h | 66 |
1 files changed, 33 insertions, 33 deletions
diff --git a/include/Socket.h b/include/Socket.h index 245ed9e..482a09f 100644 --- a/include/Socket.h +++ b/include/Socket.h @@ -1,33 +1,33 @@ -#ifndef __SOCKET_H__ -#define __SOCKET_H__ - -#include <Handle.h> -#include <BString.h> -#include <Output.h> -#include <Input.h> -#include <Exceptions.h> - -class Socket : public Handle { - public: - Socket() throw (GeneralException); - Socket(const Socket &); - virtual ~Socket() {} - bool SetLocal(const String &, int = 0); - bool Connect(const String &, int); - bool Listen(); - Socket Accept() throw (GeneralException); - bool IsConnected(); - bool IsListening(); - virtual bool CanRead(); - virtual bool CanWrite(); - virtual String GetName(); - int GetPort(); - void CloseWrite(); - void CloseRead(); - - private: - Socket(int s); - bool connected, listening, writeclosed, readclosed; -}; - -#endif +#ifndef __SOCKET_H__
+#define __SOCKET_H__
+
+#include <Handle.h>
+#include <BString.h>
+#include <Output.h>
+#include <Input.h>
+#include <Exceptions.h>
+
+class Socket : public Handle {
+ public:
+ Socket() throw (GeneralException);
+ Socket(const Socket &);
+ virtual ~Socket() {}
+ bool SetLocal(const String &, int = 0);
+ bool Connect(const String &, int);
+ bool Listen();
+ Socket Accept() throw (GeneralException);
+ bool IsConnected();
+ bool IsListening();
+ virtual bool CanRead();
+ virtual bool CanWrite();
+ virtual String GetName();
+ int GetPort();
+ void CloseWrite();
+ void CloseRead();
+
+ private:
+ Socket(int s);
+ bool connected, listening, writeclosed, readclosed;
+};
+
+#endif
|