diff options
author | San Mehat <san@google.com> | 2009-05-08 11:15:53 -0700 |
---|---|---|
committer | San Mehat <san@google.com> | 2009-05-10 09:26:42 -0700 |
commit | fa644ffe944c01a9b00f8d7676d58394fabee285 (patch) | |
tree | a19968819547c4b515c463adb48106a8d01983aa /include/sysutils/SocketClient.h | |
parent | 1441e769b2767e212a3d905bee2fd3535b484ff2 (diff) | |
download | system_core-fa644ffe944c01a9b00f8d7676d58394fabee285.zip system_core-fa644ffe944c01a9b00f8d7676d58394fabee285.tar.gz system_core-fa644ffe944c01a9b00f8d7676d58394fabee285.tar.bz2 |
libsysutils: Add multiple client support and fix some bugs
Diffstat (limited to 'include/sysutils/SocketClient.h')
-rw-r--r-- | include/sysutils/SocketClient.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/include/sysutils/SocketClient.h b/include/sysutils/SocketClient.h new file mode 100644 index 0000000..39ec7ae --- /dev/null +++ b/include/sysutils/SocketClient.h @@ -0,0 +1,23 @@ +#ifndef _SOCKET_CLIENT_H +#define _SOCKET_CLIENT_H + +#include "../../../frameworks/base/include/utils/List.h" + +#include <pthread.h> + +class SocketClient { + int mSocket; + pthread_mutex_t mWriteMutex; + +public: + SocketClient(int sock); + virtual ~SocketClient() {} + + int getSocket() { return mSocket; } + + int sendMsg(char *msg); + int sendMsg(char *msg, char *data); +}; + +typedef android::List<SocketClient *> SocketClientCollection; +#endif |