summaryrefslogtreecommitdiffstats
path: root/libcutils
diff options
context:
space:
mode:
authorPaul Kocialkowski <contact@paulk.fr>2014-02-26 13:41:11 +0100
committerElliott Hughes <enh@google.com>2014-02-26 11:33:45 -0800
commita7e2e7634c4242a9ab2fa7c8031a5745beac613f (patch)
tree711bc5041e8df789e39f06024abef94f466944e2 /libcutils
parentebb46d76e4bf4ee4f34b42709ea69cce07e3e322 (diff)
downloadsystem_core-a7e2e7634c4242a9ab2fa7c8031a5745beac613f.zip
system_core-a7e2e7634c4242a9ab2fa7c8031a5745beac613f.tar.gz
system_core-a7e2e7634c4242a9ab2fa7c8031a5745beac613f.tar.bz2
libcutils: Socket type might contain bitwise OR flags
Signed-off-by: Paul Kocialkowski <contact@paulk.fr> Change-Id: Ia5c8f136793a989fc1d71c61292afe4e5cf169fa
Diffstat (limited to 'libcutils')
-rw-r--r--libcutils/socket_local_server.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libcutils/socket_local_server.c b/libcutils/socket_local_server.c
index 4971b1b..7628fe4 100644
--- a/libcutils/socket_local_server.c
+++ b/libcutils/socket_local_server.c
@@ -43,6 +43,8 @@ int socket_local_server(const char *name, int namespaceId, int type)
#define LISTEN_BACKLOG 4
+/* Only the bottom bits are really the socket type; there are flags too. */
+#define SOCK_TYPE_MASK 0xf
/**
* Binds a pre-created socket(AF_LOCAL) 's' to 'name'
@@ -107,7 +109,7 @@ int socket_local_server(const char *name, int namespace, int type)
return -1;
}
- if (type == SOCK_STREAM) {
+ if ((type & SOCK_TYPE_MASK) == SOCK_STREAM) {
int ret;
ret = listen(s, LISTEN_BACKLOG);