NetworkSocketAPI
Dependents: HelloWizFi250Interface
Fork of NetworkSocketAPI by
Revision 120:6eb542426f15, committed 2016-05-09
- Comitter:
- Christopher Haster
- Date:
- Mon May 09 22:40:00 2016 -0500
- Parent:
- 118:96627c4b83d5
- Child:
- 121:eaea4c1291c2
- Commit message:
- Fix port issue in SocketAddress constructor
Changed in this revision
SocketAddress.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/SocketAddress.cpp Wed Apr 20 20:38:00 2016 -0500 +++ b/SocketAddress.cpp Mon May 09 22:40:00 2016 -0500 @@ -144,13 +144,17 @@ SocketAddress::SocketAddress(NetworkStack *iface, const char *host, uint16_t port) { + memset(&_ip_address, 0, sizeof _ip_address); + // Check for valid IP addresses if (host && ipv4_is_valid(host)) { _ip_version = NSAPI_IPv4; ipv4_from_address(_ip_bytes, host); + set_port(port); } else if (host && ipv6_is_valid(host)) { _ip_version = NSAPI_IPv6; ipv4_from_address(_ip_bytes, host); + set_port(port); } else { // DNS lookup int err = iface->gethostbyname(this, host); @@ -166,18 +170,21 @@ SocketAddress::SocketAddress(const char *addr, uint16_t port) { + memset(&_ip_address, 0, sizeof _ip_address); set_ip_address(addr); set_port(port); } SocketAddress::SocketAddress(const void *bytes, nsapi_version_t version, uint16_t port) { + memset(&_ip_address, 0, sizeof _ip_address); set_ip_bytes(bytes, version); set_port(port); } SocketAddress::SocketAddress(const SocketAddress &addr) { + memset(&_ip_address, 0, sizeof _ip_address); set_ip_bytes(addr.get_ip_bytes(), addr.get_ip_version()); set_port(addr.get_port()); }