increased chunk size

Dependencies:   HTTPClient-SSL

Fork of MTS-Socket by MultiTech

Revision:
1:096f484f3ae6
Child:
3:d0a1fdbd02ce
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Endpoint.cpp	Mon May 19 12:36:11 2014 -0500
@@ -0,0 +1,46 @@
+#include "Socket.h"
+#include "Endpoint.h"
+#include "MTSLog.h"
+#include <cstring>
+
+using std::memset;
+using namespace mts;
+
+Endpoint::Endpoint()
+{
+    reset_address();
+}
+
+Endpoint::~Endpoint()
+{
+}
+
+void Endpoint::reset_address(void)
+{
+    _ipAddress[0] = '\0';
+    _port = 0;
+}
+
+int Endpoint::set_address(const char* host, const int port)
+{
+    int length = strlen(host) + 1; // size of host including terminating character
+    if (length > sizeof(_ipAddress)) {
+        logError("could not set address because the hostname is too long");
+        return -1;
+    } else {
+        strncpy((char*) _ipAddress, host, length);
+        _ipAddress[length] = '\0';
+        _port = port;
+    }
+    return 0;
+}
+
+char* Endpoint::get_address()
+{
+    return _ipAddress;
+}
+
+int   Endpoint::get_port()
+{
+    return _port;
+}