repo.or.cz
/
LuatOS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix: 修正API生成逻辑中2024库的url
[LuatOS.git]
/
luat
/
include
/
luat_socket.h
blob
d7d90b583038985ac479cf59e6a0d3ff6bb0de55
1
#ifndef LUAT_SOCKET_H
2
#define LUAT_SOCKET_H
3
#include
"luat_base.h"
4
5
int
luat_socket_ntp_sync
(
const char
*
ntpServer
);
6
int
luat_socket_tsend
(
const char
*
hostname
,
int
port
,
void
*
buff
,
int
len
);
7
int
luat_socket_is_ready
(
void
);
8
uint32_t
luat_socket_selfip
(
void
);
9
10
#endif