use TCP to connect to mbed connector
Fork of mbedConnectorInterfaceWithDM by
mbed-connector-interface/mbedEndpointNetworkImpl.h@54:dfee8691c83a, 2016-08-09 (annotated)
- Committer:
- ansond
- Date:
- Tue Aug 09 17:18:49 2016 +0000
- Revision:
- 54:dfee8691c83a
updated
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
ansond | 54:dfee8691c83a | 1 | /** |
ansond | 54:dfee8691c83a | 2 | * @file mbedEndpointNetworkImpl.h |
ansond | 54:dfee8691c83a | 3 | * @brief mbed Endpoint Network header (impl) - forward references to public functions of mbedEndpointNetwork |
ansond | 54:dfee8691c83a | 4 | * @author Doug Anson |
ansond | 54:dfee8691c83a | 5 | * @version 1.0 |
ansond | 54:dfee8691c83a | 6 | * @see |
ansond | 54:dfee8691c83a | 7 | * |
ansond | 54:dfee8691c83a | 8 | * Copyright (c) 2014 |
ansond | 54:dfee8691c83a | 9 | * |
ansond | 54:dfee8691c83a | 10 | * Licensed under the Apache License, Version 2.0 (the "License"); |
ansond | 54:dfee8691c83a | 11 | * you may not use this file except in compliance with the License. |
ansond | 54:dfee8691c83a | 12 | * You may obtain a copy of the License at |
ansond | 54:dfee8691c83a | 13 | * |
ansond | 54:dfee8691c83a | 14 | * http://www.apache.org/licenses/LICENSE-2.0 |
ansond | 54:dfee8691c83a | 15 | * |
ansond | 54:dfee8691c83a | 16 | * Unless required by applicable law or agreed to in writing, software |
ansond | 54:dfee8691c83a | 17 | * distributed under the License is distributed on an "AS IS" BASIS, |
ansond | 54:dfee8691c83a | 18 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
ansond | 54:dfee8691c83a | 19 | * See the License for the specific language governing permissions and |
ansond | 54:dfee8691c83a | 20 | * limitations under the License. |
ansond | 54:dfee8691c83a | 21 | */ |
ansond | 54:dfee8691c83a | 22 | |
ansond | 54:dfee8691c83a | 23 | #ifndef __MBED_ENDPOINT_NETWORK_IMPL_H__ |
ansond | 54:dfee8691c83a | 24 | #define __MBED_ENDPOINT_NETWORK_IMPL_H__ |
ansond | 54:dfee8691c83a | 25 | |
ansond | 54:dfee8691c83a | 26 | // Forward references to public functions of mbedEndpointNetwork... |
ansond | 54:dfee8691c83a | 27 | extern "C" char *net_get_type(void); |
ansond | 54:dfee8691c83a | 28 | extern "C" void net_shutdown_endpoint(void); |
ansond | 54:dfee8691c83a | 29 | extern "C" void net_plumb_network(void *p); |
ansond | 54:dfee8691c83a | 30 | extern "C" void net_finalize_and_run_endpoint_main_loop(void *p); |
ansond | 54:dfee8691c83a | 31 | |
ansond | 54:dfee8691c83a | 32 | #endif // __MBED_ENDPOINT_NETWORK_IMPL_H__ |