This is a fork due to permission issues
Dependencies: mbed Socket lwip-eth lwip-sys lwip
Fork of 6_songs-from-the-cloud by
mbed-client/mbed-client-classic/source/m2mconnectionhandler.cpp
- Committer:
- maclobdell
- Date:
- 2016-05-18
- Revision:
- 0:f7c60d3e7b8a
File content as of revision 0:f7c60d3e7b8a:
/* * Copyright (c) 2015 ARM Limited. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * 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 "mbed-client-classic/m2mconnectionhandlerpimpl.h" #include "mbed-client/m2mconnectionobserver.h" #include "mbed-client/m2mconnectionhandler.h" #include "mbed-client/m2mconstants.h" M2MConnectionHandler::M2MConnectionHandler(M2MConnectionObserver &observer, M2MConnectionSecurity* sec, M2MInterface::BindingMode mode, M2MInterface::NetworkStack stack) :_observer(observer) { _private_impl = new M2MConnectionHandlerPimpl(this, observer, sec, mode, stack); } M2MConnectionHandler::~M2MConnectionHandler() { delete _private_impl; } bool M2MConnectionHandler::bind_connection(const uint16_t listen_port) { return _private_impl->bind_connection(listen_port); } bool M2MConnectionHandler::resolve_server_address(const String& server_address, const uint16_t server_port, M2MConnectionObserver::ServerType server_type, const M2MSecurity* security) { return _private_impl->resolve_server_address(server_address, server_port, server_type, security); } bool M2MConnectionHandler::start_listening_for_data() { return _private_impl->start_listening_for_data(); } void M2MConnectionHandler::stop_listening() { _private_impl->stop_listening(); } int M2MConnectionHandler::send_to_socket(const unsigned char *buf, size_t len) { return _private_impl->send_to_socket(buf, len); } int M2MConnectionHandler::receive_from_socket(unsigned char *buf, size_t len) { return _private_impl->receive_from_socket(buf, len); } bool M2MConnectionHandler::send_data(uint8_t *data, uint16_t data_len, sn_nsdl_addr_s *address) { return _private_impl->send_data(data, data_len, address); } void M2MConnectionHandler::handle_connection_error(int error) { _private_impl->handle_connection_error(error); }