ap

Dependencies:   DnsQuery

Dependents:   WizFi310_TCP_Echo_Server_Example

Fork of NetworkSocketAPI by NetworkSocketAPI

SocketAddress.cpp

Committer:
Christopher Haster
Date:
2016-04-05
Revision:
80:9c6673c93082
Parent:
79:43a7e8c0d6cc
Child:
86:7ca9776b9cc0

File content as of revision 80:9c6673c93082:

/* Socket
 * Copyright (c) 2015 ARM Limited
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "SocketAddress.h"
#include "NetworkInterface.h"
#include <string.h>

SocketAddress::SocketAddress(NetworkInterface *iface, const char *host, uint16_t port)
{
    int err = iface->gethostbyname(host, _ip_address);
    set_port(port);

    if (err) {
        _ip_address[0] = '\0';
        _port = 0;
    }
}

SocketAddress::SocketAddress(const char *addr, uint16_t port)
{
    set_ip_address(addr);
    set_port(port);
}

SocketAddress::SocketAddress(const SocketAddress &addr)
{
    set_ip_address(addr.get_ip_address());
    set_port(addr.get_port());
}

void SocketAddress::set_ip_address(const char *addr)
{
    strncpy(_ip_address, addr, sizeof _ip_address);
    _ip_address[sizeof _ip_address - 1] = '\0';
}

void SocketAddress::set_port(uint16_t port)
{
    _port = port;
}

const char *SocketAddress::get_ip_address() const
{
    if (!_ip_address[0]) {
        return 0;
    }
    return _ip_address;
}

uint16_t SocketAddress::get_port() const
{
    return _port;
}