luat_socket.h 268 B

12345678910
  1. #ifndef LUAT_SOCKET_H
  2. #define LUAT_SOCKET_H
  3. #include "luat_base.h"
  4. int luat_socket_ntp_sync(const char* ntpServer);
  5. int luat_socket_tsend(const char* hostname, int port, void* buff, int len);
  6. int luat_socket_is_ready(void);
  7. uint32_t luat_socket_selfip(void);
  8. #endif