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