File tree Expand file tree Collapse file tree 7 files changed +40
-17
lines changed Expand file tree Collapse file tree 7 files changed +40
-17
lines changed Original file line number Diff line number Diff line change 13
13
* limitations under the License.
14
14
*/
15
15
16
+ /* @file CellularBase.h CellularBase */
17
+
18
+ /* * @addtogroup netsocket
19
+ * @{
20
+ */
21
+
16
22
#ifndef CELLULAR_BASE_H
17
23
#define CELLULAR_BASE_H
18
24
19
25
#include " netsocket/NetworkInterface.h"
20
26
21
27
/* * Common interface that is shared between cellular interfaces.
22
- * @addtogroup netsocket
23
28
*/
24
29
class CellularBase : public NetworkInterface {
25
30
Original file line number Diff line number Diff line change 23
23
#include " netsocket/NetworkInterface.h"
24
24
#include " DNS.h"
25
25
26
+ /* * @file NetworkStack.h NetworkStack class */
27
+ /* * @addtogroup netsocket
28
+ * @{ */
29
+
26
30
// Predeclared classes
27
31
class OnboardNetworkStack ;
28
32
@@ -32,7 +36,6 @@ class OnboardNetworkStack;
32
36
* can connect to a network over IP. By implementing the
33
37
* NetworkStack, a network stack can be used as a target
34
38
* for instantiating network sockets.
35
- * @addtogroup netsocket
36
39
*/
37
40
class NetworkStack : public DNS {
38
41
public:
@@ -421,3 +424,5 @@ NetworkStack *nsapi_create_stack(IF *iface)
421
424
422
425
423
426
#endif
427
+
428
+ /* * @} */
Original file line number Diff line number Diff line change 1
-
2
- /* * \addtogroup netsocket */
3
- /* * @{*/
4
- /* Socket
1
+ /*
5
2
* Copyright (c) 2015 ARM Limited
6
3
*
7
4
* Licensed under the Apache License, Version 2.0 (the "License");
17
14
* limitations under the License.
18
15
*/
19
16
17
+ /* * @file Socket.h Abstract Socket interface */
18
+ /* * @addtogroup netsocket
19
+ * Mbed OS Socket API
20
+ * @{ */
21
+
20
22
#ifndef SOCKET_H
21
23
#define SOCKET_H
22
24
Original file line number Diff line number Diff line change 1
-
2
- /* SocketAddress
1
+ /*
3
2
* Copyright (c) 2015 ARM Limited
4
3
*
5
4
* Licensed under the Apache License, Version 2.0 (the "License");
15
14
* limitations under the License.
16
15
*/
17
16
17
+ /* * @file SocketAddress.h SocketAddress class */
18
+ /* * \addtogroup netsocket
19
+ * @{*/
20
+
18
21
#ifndef SOCKET_ADDRESS_H
19
22
#define SOCKET_ADDRESS_H
20
23
@@ -29,7 +32,6 @@ class NetworkInterface;
29
32
/* * SocketAddress class
30
33
*
31
34
* Representation of an IP address and port pair.
32
- * @addtogroup netsocket
33
35
*/
34
36
class SocketAddress {
35
37
public:
Original file line number Diff line number Diff line change 1
-
2
- /* TCPServer
1
+ /*
3
2
* Copyright (c) 2015 ARM Limited
4
3
*
5
4
* Licensed under the Apache License, Version 2.0 (the "License");
15
14
* limitations under the License.
16
15
*/
17
16
17
+ /* * @file TCPServer.h Deprecated TCPServer class */
18
+ /* * \addtogroup netsocket
19
+ * @{*/
20
+
18
21
#ifndef TCPSERVER_H
19
22
#define TCPSERVER_H
20
23
26
29
27
30
28
31
/* * TCP socket server
29
- * @addtogroup netsocket
30
32
*/
31
33
class TCPServer : public TCPSocket {
32
34
public:
@@ -82,3 +84,5 @@ class TCPServer : public TCPSocket {
82
84
};
83
85
84
86
#endif
87
+
88
+ /* * @} */
Original file line number Diff line number Diff line change 1
-
2
- /* * \addtogroup netsocket */
3
- /* * @{*/
4
- /* TCPSocket
1
+ /*
5
2
* Copyright (c) 2015 ARM Limited
6
3
*
7
4
* Licensed under the Apache License, Version 2.0 (the "License");
17
14
* limitations under the License.
18
15
*/
19
16
17
+ /* * @file TCPSocket.h TCPSocket class */
18
+ /* * \addtogroup netsocket
19
+ * @{*/
20
+
20
21
#ifndef TCPSOCKET_H
21
22
#define TCPSOCKET_H
22
23
Original file line number Diff line number Diff line change 22
22
#include " netsocket/NetworkInterface.h"
23
23
#include " netsocket/WiFiAccessPoint.h"
24
24
25
+ /* * @file WifiInterface.h Common interface that is shared between Wi-Fi devices */
26
+ /* * @addtogroup netsocket
27
+ * @{
28
+ */
29
+
25
30
/* * Common interface that is shared between Wi-Fi devices.
26
31
*
27
- * @addtogroup netsocket
28
32
*/
29
33
class WiFiInterface : public virtual NetworkInterface {
30
34
public:
You can’t perform that action at this time.
0 commit comments