victor qiu / Mbed OS SimpleNTP

Fork of SimpleNTP by Akinori Hashimoto

Committer:
victorqiu2
Date:
Tue Aug 01 01:22:01 2017 +0000
Revision:
2:68ae27667d82
A

Who changed what in which revision?

UserRevisionLine numberNew contents of line
victorqiu2 2:68ae27667d82 1 /* Copyright (C) 2012 mbed.org, MIT License
victorqiu2 2:68ae27667d82 2 *
victorqiu2 2:68ae27667d82 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
victorqiu2 2:68ae27667d82 4 * and associated documentation files (the "Software"), to deal in the Software without restriction,
victorqiu2 2:68ae27667d82 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
victorqiu2 2:68ae27667d82 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
victorqiu2 2:68ae27667d82 7 * furnished to do so, subject to the following conditions:
victorqiu2 2:68ae27667d82 8 *
victorqiu2 2:68ae27667d82 9 * The above copyright notice and this permission notice shall be included in all copies or
victorqiu2 2:68ae27667d82 10 * substantial portions of the Software.
victorqiu2 2:68ae27667d82 11 *
victorqiu2 2:68ae27667d82 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
victorqiu2 2:68ae27667d82 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
victorqiu2 2:68ae27667d82 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
victorqiu2 2:68ae27667d82 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
victorqiu2 2:68ae27667d82 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
victorqiu2 2:68ae27667d82 17 */
victorqiu2 2:68ae27667d82 18 #include "Socket.h"
victorqiu2 2:68ae27667d82 19 #include "Endpoint.h"
victorqiu2 2:68ae27667d82 20
victorqiu2 2:68ae27667d82 21 Endpoint::Endpoint() {
victorqiu2 2:68ae27667d82 22 reset_address();
victorqiu2 2:68ae27667d82 23 }
victorqiu2 2:68ae27667d82 24 Endpoint::~Endpoint() {}
victorqiu2 2:68ae27667d82 25
victorqiu2 2:68ae27667d82 26 void Endpoint::reset_address(void) {
victorqiu2 2:68ae27667d82 27 _ipAddress[0] = '\0';
victorqiu2 2:68ae27667d82 28 _port = 0;
victorqiu2 2:68ae27667d82 29 }
victorqiu2 2:68ae27667d82 30
victorqiu2 2:68ae27667d82 31 int Endpoint::set_address(const char* host, const int port) {
victorqiu2 2:68ae27667d82 32 //Resolve DNS address or populate hard-coded IP address
victorqiu2 2:68ae27667d82 33 WIZnet_Chip* eth = WIZnet_Chip::getInstance();
victorqiu2 2:68ae27667d82 34 if (eth == NULL) {
victorqiu2 2:68ae27667d82 35 error("Endpoint constructor error: no WIZnet chip instance available!\r\n");
victorqiu2 2:68ae27667d82 36 return -1;
victorqiu2 2:68ae27667d82 37 }
victorqiu2 2:68ae27667d82 38 uint32_t addr;
victorqiu2 2:68ae27667d82 39 if (!eth->gethostbyname(host, &addr)) {
victorqiu2 2:68ae27667d82 40 return -1;
victorqiu2 2:68ae27667d82 41 }
victorqiu2 2:68ae27667d82 42 snprintf(_ipAddress, sizeof(_ipAddress), "%d.%d.%d.%d", (addr>>24)&0xff, (addr>>16)&0xff, (addr>>8)&0xff, addr&0xff);
victorqiu2 2:68ae27667d82 43 _port = port;
victorqiu2 2:68ae27667d82 44 return 0;
victorqiu2 2:68ae27667d82 45 }
victorqiu2 2:68ae27667d82 46
victorqiu2 2:68ae27667d82 47 char* Endpoint::get_address() {
victorqiu2 2:68ae27667d82 48 return _ipAddress;
victorqiu2 2:68ae27667d82 49 }
victorqiu2 2:68ae27667d82 50
victorqiu2 2:68ae27667d82 51 int Endpoint::get_port() {
victorqiu2 2:68ae27667d82 52 return _port;
victorqiu2 2:68ae27667d82 53 }
victorqiu2 2:68ae27667d82 54