Daniel Vizcaya
/
04_RTOS_Embebidos
Entrega 3er corte - sistemas embebidos
mbed-os/features/netsocket/nsapi.h@0:6ad07c9019fd, 2018-05-30 (annotated)
- Committer:
- Bethory
- Date:
- Wed May 30 00:01:50 2018 +0000
- Revision:
- 0:6ad07c9019fd
Codigo de tales para todos los pasculaes
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Bethory | 0:6ad07c9019fd | 1 | |
Bethory | 0:6ad07c9019fd | 2 | /** \addtogroup netsocket */ |
Bethory | 0:6ad07c9019fd | 3 | /** @{*/ |
Bethory | 0:6ad07c9019fd | 4 | /* nsapi.h - The network socket API |
Bethory | 0:6ad07c9019fd | 5 | * Copyright (c) 2015 ARM Limited |
Bethory | 0:6ad07c9019fd | 6 | * |
Bethory | 0:6ad07c9019fd | 7 | * Licensed under the Apache License, Version 2.0 (the "License"); |
Bethory | 0:6ad07c9019fd | 8 | * you may not use this file except in compliance with the License. |
Bethory | 0:6ad07c9019fd | 9 | * You may obtain a copy of the License at |
Bethory | 0:6ad07c9019fd | 10 | * |
Bethory | 0:6ad07c9019fd | 11 | * http://www.apache.org/licenses/LICENSE-2.0 |
Bethory | 0:6ad07c9019fd | 12 | * |
Bethory | 0:6ad07c9019fd | 13 | * Unless required by applicable law or agreed to in writing, software |
Bethory | 0:6ad07c9019fd | 14 | * distributed under the License is distributed on an "AS IS" BASIS, |
Bethory | 0:6ad07c9019fd | 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
Bethory | 0:6ad07c9019fd | 16 | * See the License for the specific language governing permissions and |
Bethory | 0:6ad07c9019fd | 17 | * limitations under the License. |
Bethory | 0:6ad07c9019fd | 18 | */ |
Bethory | 0:6ad07c9019fd | 19 | |
Bethory | 0:6ad07c9019fd | 20 | #ifndef NSAPI_H |
Bethory | 0:6ad07c9019fd | 21 | #define NSAPI_H |
Bethory | 0:6ad07c9019fd | 22 | |
Bethory | 0:6ad07c9019fd | 23 | |
Bethory | 0:6ad07c9019fd | 24 | // entry point for nsapi types |
Bethory | 0:6ad07c9019fd | 25 | #include "nsapi_types.h" |
Bethory | 0:6ad07c9019fd | 26 | |
Bethory | 0:6ad07c9019fd | 27 | #ifdef __cplusplus |
Bethory | 0:6ad07c9019fd | 28 | |
Bethory | 0:6ad07c9019fd | 29 | // entry point for C++ api |
Bethory | 0:6ad07c9019fd | 30 | #include "netsocket/SocketAddress.h" |
Bethory | 0:6ad07c9019fd | 31 | #include "netsocket/NetworkStack.h" |
Bethory | 0:6ad07c9019fd | 32 | |
Bethory | 0:6ad07c9019fd | 33 | #include "netsocket/NetworkInterface.h" |
Bethory | 0:6ad07c9019fd | 34 | #include "netsocket/EthInterface.h" |
Bethory | 0:6ad07c9019fd | 35 | #include "netsocket/WiFiInterface.h" |
Bethory | 0:6ad07c9019fd | 36 | #include "netsocket/CellularBase.h" |
Bethory | 0:6ad07c9019fd | 37 | #include "netsocket/MeshInterface.h" |
Bethory | 0:6ad07c9019fd | 38 | |
Bethory | 0:6ad07c9019fd | 39 | #include "netsocket/Socket.h" |
Bethory | 0:6ad07c9019fd | 40 | #include "netsocket/UDPSocket.h" |
Bethory | 0:6ad07c9019fd | 41 | #include "netsocket/TCPSocket.h" |
Bethory | 0:6ad07c9019fd | 42 | #include "netsocket/TCPServer.h" |
Bethory | 0:6ad07c9019fd | 43 | |
Bethory | 0:6ad07c9019fd | 44 | #endif |
Bethory | 0:6ad07c9019fd | 45 | |
Bethory | 0:6ad07c9019fd | 46 | |
Bethory | 0:6ad07c9019fd | 47 | #endif |
Bethory | 0:6ad07c9019fd | 48 | |
Bethory | 0:6ad07c9019fd | 49 | /** @}*/ |