aboutsummaryrefslogtreecommitdiff
path: root/daemon/OlySocket.h
diff options
context:
space:
mode:
authorDrew Richardson <drew.richardson@arm.com>2015-03-28 12:00:00 -0700
committerDrew Richardson <drew.richardson@arm.com>2015-04-01 14:41:00 -0700
commitabc3535c0d237bf7968b7092e545f2ff422af954 (patch)
tree778f83b3d8fd576762290b58b12c33cca5a193e1 /daemon/OlySocket.h
parente8f6a181be0b67fc9d9ac117bc2ed01737be654c (diff)
gator: Version 5.215.21
Signed-off-by: Drew Richardson <drew.richardson@arm.com>
Diffstat (limited to 'daemon/OlySocket.h')
-rw-r--r--daemon/OlySocket.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/daemon/OlySocket.h b/daemon/OlySocket.h
index 6b53b01..757a252 100644
--- a/daemon/OlySocket.h
+++ b/daemon/OlySocket.h
@@ -1,5 +1,5 @@
/**
- * Copyright (C) ARM Limited 2010-2014. All rights reserved.
+ * Copyright (C) ARM Limited 2010-2015. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
@@ -12,7 +12,7 @@
#include <stddef.h>
#ifdef WIN32
-typedef socklen_t int;
+typedef int socklen_t;
#else
#include <sys/socket.h>
#endif
@@ -20,7 +20,7 @@ typedef socklen_t int;
class OlySocket {
public:
#ifndef WIN32
- static int connect(const char* path, const size_t pathSize);
+ static int connect(const char* path, const size_t pathSize, const bool calculateAddrlen = false);
#endif
OlySocket(int socketID);
@@ -43,7 +43,7 @@ class OlyServerSocket {
public:
OlyServerSocket(int port);
#ifndef WIN32
- OlyServerSocket(const char* path, const size_t pathSize);
+ OlyServerSocket(const char* path, const size_t pathSize, const bool calculateAddrlen = false);
#endif
~OlyServerSocket();