mirror of https://github.com/ARMmbed/mbed-os.git
NanostackInterface: Remove string round-trips
Older versions of SocketAddress required conversion via string - this is no longer the case.pull/3165/head
parent
b2834b9aa6
commit
2135c8f368
|
@ -28,7 +28,6 @@
|
||||||
#include "mesh_system.h" // from inside mbed-mesh-api
|
#include "mesh_system.h" // from inside mbed-mesh-api
|
||||||
#include "socket_api.h"
|
#include "socket_api.h"
|
||||||
#include "net_interface.h"
|
#include "net_interface.h"
|
||||||
#include "ip6string.h"
|
|
||||||
// Uncomment to enable trace
|
// Uncomment to enable trace
|
||||||
//#define HAVE_DEBUG
|
//#define HAVE_DEBUG
|
||||||
#include "ns_trace.h"
|
#include "ns_trace.h"
|
||||||
|
@ -126,16 +125,13 @@ static void convert_mbed_addr_to_ns(ns_address_t *ns_addr,
|
||||||
{
|
{
|
||||||
ns_addr->type = ADDRESS_IPV6;
|
ns_addr->type = ADDRESS_IPV6;
|
||||||
ns_addr->identifier = s_addr->get_port();
|
ns_addr->identifier = s_addr->get_port();
|
||||||
const char *str = s_addr->get_ip_address();
|
memcpy(ns_addr->address, s_addr->get_ip_bytes(), 16);
|
||||||
stoip6(str, strlen(str), ns_addr->address);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void convert_ns_addr_to_mbed(SocketAddress *s_addr, const ns_address_t *ns_addr)
|
static void convert_ns_addr_to_mbed(SocketAddress *s_addr, const ns_address_t *ns_addr)
|
||||||
{
|
{
|
||||||
char str[40];
|
|
||||||
ip6tos(ns_addr->address, str);
|
|
||||||
s_addr->set_port(ns_addr->identifier);
|
s_addr->set_port(ns_addr->identifier);
|
||||||
s_addr->set_ip_address(str);
|
s_addr->set_ip_bytes(ns_addr->address, NSAPI_IPv6);
|
||||||
}
|
}
|
||||||
|
|
||||||
void* NanostackSocket::operator new(std::size_t sz) {
|
void* NanostackSocket::operator new(std::size_t sz) {
|
||||||
|
|
Loading…
Reference in New Issue