123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- #ifndef SOCKET_CONFIG_H__
- #define SOCKET_CONFIG_H__
- #include "socket_common.h"
- #include "transport_if.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- uint32_t config_socket_init(void);
- void config_socket_start(void);
- extern socket_transport_t config_socket_transport;
- #ifdef __cplusplus
- }
- #endif
- #endif
|