PIR sensor 2
Fork of PIRSensorWithTwitter by
Socket/Endpoint.cpp@0:774ff1e8b26b, 2017-04-19 (annotated)
- Committer:
- kaizen
- Date:
- Wed Apr 19 00:46:44 2017 +0000
- Revision:
- 0:774ff1e8b26b
First release WizFi310Interface for mbed OS2 ( Legacy version )
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
kaizen | 0:774ff1e8b26b | 1 | /* |
kaizen | 0:774ff1e8b26b | 2 | * Copyright (C) 2013 gsfan, MIT License |
kaizen | 0:774ff1e8b26b | 3 | * |
kaizen | 0:774ff1e8b26b | 4 | * Permission is hereby granted, free of charge, to any person obtaining a copy of this software |
kaizen | 0:774ff1e8b26b | 5 | * and associated documentation files (the "Software"), to deal in the Software without restriction, |
kaizen | 0:774ff1e8b26b | 6 | * including without limitation the rights to use, copy, modify, merge, publish, distribute, |
kaizen | 0:774ff1e8b26b | 7 | * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is |
kaizen | 0:774ff1e8b26b | 8 | * furnished to do so, subject to the following conditions: |
kaizen | 0:774ff1e8b26b | 9 | * |
kaizen | 0:774ff1e8b26b | 10 | * The above copyright notice and this permission notice shall be included in all copies or |
kaizen | 0:774ff1e8b26b | 11 | * substantial portions of the Software. |
kaizen | 0:774ff1e8b26b | 12 | * |
kaizen | 0:774ff1e8b26b | 13 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING |
kaizen | 0:774ff1e8b26b | 14 | * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
kaizen | 0:774ff1e8b26b | 15 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, |
kaizen | 0:774ff1e8b26b | 16 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
kaizen | 0:774ff1e8b26b | 17 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
kaizen | 0:774ff1e8b26b | 18 | */ |
kaizen | 0:774ff1e8b26b | 19 | /* Copyright (C) 2014 Wiznet, MIT License |
kaizen | 0:774ff1e8b26b | 20 | * port to the Wiznet Module WizFi250 |
kaizen | 0:774ff1e8b26b | 21 | */ |
kaizen | 0:774ff1e8b26b | 22 | /* Copyright (C) 2017 Wiznet, MIT License |
kaizen | 0:774ff1e8b26b | 23 | * port to the Wiznet Module WizFi310 |
kaizen | 0:774ff1e8b26b | 24 | */ |
kaizen | 0:774ff1e8b26b | 25 | |
kaizen | 0:774ff1e8b26b | 26 | #include "Socket/Socket.h" |
kaizen | 0:774ff1e8b26b | 27 | #include "Socket/Endpoint.h" |
kaizen | 0:774ff1e8b26b | 28 | #include <cstring> |
kaizen | 0:774ff1e8b26b | 29 | |
kaizen | 0:774ff1e8b26b | 30 | using std::memset; |
kaizen | 0:774ff1e8b26b | 31 | |
kaizen | 0:774ff1e8b26b | 32 | Endpoint::Endpoint() { |
kaizen | 0:774ff1e8b26b | 33 | _ewizfi310 = WizFi310::getInstance(); |
kaizen | 0:774ff1e8b26b | 34 | if (_ewizfi310 == NULL) |
kaizen | 0:774ff1e8b26b | 35 | error("Endpoint constructor error: no WizFi250 instance available!\r\n"); |
kaizen | 0:774ff1e8b26b | 36 | reset_address(); |
kaizen | 0:774ff1e8b26b | 37 | } |
kaizen | 0:774ff1e8b26b | 38 | Endpoint::~Endpoint() {} |
kaizen | 0:774ff1e8b26b | 39 | |
kaizen | 0:774ff1e8b26b | 40 | void Endpoint::reset_address(void) { |
kaizen | 0:774ff1e8b26b | 41 | _ipAddress[0] = '\0'; |
kaizen | 0:774ff1e8b26b | 42 | _port = 0; |
kaizen | 0:774ff1e8b26b | 43 | } |
kaizen | 0:774ff1e8b26b | 44 | |
kaizen | 0:774ff1e8b26b | 45 | int Endpoint::set_address(const char* host, const int port) { |
kaizen | 0:774ff1e8b26b | 46 | //Resolve DNS address or populate hard-coded IP address |
kaizen | 0:774ff1e8b26b | 47 | _port = port; |
kaizen | 0:774ff1e8b26b | 48 | return _ewizfi310->getHostByName(host, _ipAddress); |
kaizen | 0:774ff1e8b26b | 49 | } |
kaizen | 0:774ff1e8b26b | 50 | |
kaizen | 0:774ff1e8b26b | 51 | char* Endpoint::get_address() { |
kaizen | 0:774ff1e8b26b | 52 | return _ipAddress; |
kaizen | 0:774ff1e8b26b | 53 | } |
kaizen | 0:774ff1e8b26b | 54 | |
kaizen | 0:774ff1e8b26b | 55 | int Endpoint::get_port() { |
kaizen | 0:774ff1e8b26b | 56 | return _port; |
kaizen | 0:774ff1e8b26b | 57 | } |