NetworkSocketAPI
Dependents: HelloWizFi250Interface
Fork of NetworkSocketAPI by
Revision 29:7bcec3189a93, committed 2016-02-22
- Comitter:
- geky
- Date:
- Mon Feb 22 20:58:50 2016 +0000
- Branch:
- api-changes
- Parent:
- 28:163fbe3263f4
- Child:
- 30:3cc78f5db99d
- Commit message:
- Fixed include statements
Changed in this revision
NetworkInterface.cpp | Show annotated file Show diff for this revision Revisions of this file |
Socket.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/NetworkInterface.cpp Thu Feb 18 13:19:47 2016 -0600 +++ b/NetworkInterface.cpp Mon Feb 22 20:58:50 2016 +0000 @@ -15,7 +15,6 @@ */ #include "NetworkInterface.h" -#include <stdlib.h> #include <string.h> NetworkInterface::NetworkInterface() {
--- a/Socket.cpp Thu Feb 18 13:19:47 2016 -0600 +++ b/Socket.cpp Mon Feb 22 20:58:50 2016 +0000 @@ -15,7 +15,7 @@ */ #include "Socket.h" -#include <cstring> +#include <string.h> Socket::Socket(NetworkInterface *iface, socket_protocol_t proto) : _iface(iface)