
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-mbedtls/source/m2mconnectionsecurity.cpp@0:f7c60d3e7b8a, 2016-05-18 (annotated)
- Committer:
- maclobdell
- Date:
- Wed May 18 19:06:32 2016 +0000
- Revision:
- 0:f7c60d3e7b8a
clean version
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
maclobdell | 0:f7c60d3e7b8a | 1 | /* |
maclobdell | 0:f7c60d3e7b8a | 2 | * Copyright (c) 2015 ARM Limited. All rights reserved. |
maclobdell | 0:f7c60d3e7b8a | 3 | * SPDX-License-Identifier: Apache-2.0 |
maclobdell | 0:f7c60d3e7b8a | 4 | * Licensed under the Apache License, Version 2.0 (the License); you may |
maclobdell | 0:f7c60d3e7b8a | 5 | * not use this file except in compliance with the License. |
maclobdell | 0:f7c60d3e7b8a | 6 | * You may obtain a copy of the License at |
maclobdell | 0:f7c60d3e7b8a | 7 | * |
maclobdell | 0:f7c60d3e7b8a | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
maclobdell | 0:f7c60d3e7b8a | 9 | * |
maclobdell | 0:f7c60d3e7b8a | 10 | * Unless required by applicable law or agreed to in writing, software |
maclobdell | 0:f7c60d3e7b8a | 11 | * distributed under the License is distributed on an AS IS BASIS, WITHOUT |
maclobdell | 0:f7c60d3e7b8a | 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
maclobdell | 0:f7c60d3e7b8a | 13 | * See the License for the specific language governing permissions and |
maclobdell | 0:f7c60d3e7b8a | 14 | * limitations under the License. |
maclobdell | 0:f7c60d3e7b8a | 15 | */ |
maclobdell | 0:f7c60d3e7b8a | 16 | |
maclobdell | 0:f7c60d3e7b8a | 17 | #include <string.h> |
maclobdell | 0:f7c60d3e7b8a | 18 | #include "mbed-client/m2mconnectionhandler.h" |
maclobdell | 0:f7c60d3e7b8a | 19 | #include "mbed-client/m2mconnectionsecurity.h" |
maclobdell | 0:f7c60d3e7b8a | 20 | #include "mbed-client/m2mtimer.h" |
maclobdell | 0:f7c60d3e7b8a | 21 | #include "mbed-client/m2msecurity.h" |
maclobdell | 0:f7c60d3e7b8a | 22 | #include "mbed-client-mbedtls/m2mconnectionsecuritypimpl.h" |
maclobdell | 0:f7c60d3e7b8a | 23 | |
maclobdell | 0:f7c60d3e7b8a | 24 | M2MConnectionSecurity::M2MConnectionSecurity(SecurityMode mode) |
maclobdell | 0:f7c60d3e7b8a | 25 | { |
maclobdell | 0:f7c60d3e7b8a | 26 | _private_impl = new M2MConnectionSecurityPimpl(mode); |
maclobdell | 0:f7c60d3e7b8a | 27 | } |
maclobdell | 0:f7c60d3e7b8a | 28 | |
maclobdell | 0:f7c60d3e7b8a | 29 | M2MConnectionSecurity::~M2MConnectionSecurity(){ |
maclobdell | 0:f7c60d3e7b8a | 30 | delete _private_impl; |
maclobdell | 0:f7c60d3e7b8a | 31 | } |
maclobdell | 0:f7c60d3e7b8a | 32 | |
maclobdell | 0:f7c60d3e7b8a | 33 | void M2MConnectionSecurity::reset(){ |
maclobdell | 0:f7c60d3e7b8a | 34 | _private_impl->reset(); |
maclobdell | 0:f7c60d3e7b8a | 35 | } |
maclobdell | 0:f7c60d3e7b8a | 36 | |
maclobdell | 0:f7c60d3e7b8a | 37 | int M2MConnectionSecurity::init(const M2MSecurity *security){ |
maclobdell | 0:f7c60d3e7b8a | 38 | return _private_impl->init(security); |
maclobdell | 0:f7c60d3e7b8a | 39 | } |
maclobdell | 0:f7c60d3e7b8a | 40 | |
maclobdell | 0:f7c60d3e7b8a | 41 | int M2MConnectionSecurity::start_connecting_non_blocking(M2MConnectionHandler* connHandler) |
maclobdell | 0:f7c60d3e7b8a | 42 | { |
maclobdell | 0:f7c60d3e7b8a | 43 | return _private_impl->start_connecting_non_blocking(connHandler); |
maclobdell | 0:f7c60d3e7b8a | 44 | } |
maclobdell | 0:f7c60d3e7b8a | 45 | |
maclobdell | 0:f7c60d3e7b8a | 46 | int M2MConnectionSecurity::continue_connecting() |
maclobdell | 0:f7c60d3e7b8a | 47 | { |
maclobdell | 0:f7c60d3e7b8a | 48 | return _private_impl->continue_connecting(); |
maclobdell | 0:f7c60d3e7b8a | 49 | } |
maclobdell | 0:f7c60d3e7b8a | 50 | |
maclobdell | 0:f7c60d3e7b8a | 51 | int M2MConnectionSecurity::connect(M2MConnectionHandler* connHandler){ |
maclobdell | 0:f7c60d3e7b8a | 52 | return _private_impl->connect(connHandler); |
maclobdell | 0:f7c60d3e7b8a | 53 | } |
maclobdell | 0:f7c60d3e7b8a | 54 | |
maclobdell | 0:f7c60d3e7b8a | 55 | int M2MConnectionSecurity::send_message(unsigned char *message, int len){ |
maclobdell | 0:f7c60d3e7b8a | 56 | return _private_impl->send_message(message, len); |
maclobdell | 0:f7c60d3e7b8a | 57 | } |
maclobdell | 0:f7c60d3e7b8a | 58 | |
maclobdell | 0:f7c60d3e7b8a | 59 | int M2MConnectionSecurity::read(unsigned char* buffer, uint16_t len){ |
maclobdell | 0:f7c60d3e7b8a | 60 | return _private_impl->read(buffer, len); |
maclobdell | 0:f7c60d3e7b8a | 61 | } |