25 lines
567 B
C
25 lines
567 B
C
|
||
#ifndef NTPCLIENT_DEFINES_123_INCLUDED
|
||
#define NTPCLIENT_DEFINES_123_INCLUDED
|
||
|
||
|
||
#ifdef __cplusplus
|
||
extern "C" {
|
||
#endif
|
||
/************************************************************************/
|
||
|
||
/** 本地端口,间隔时间(s),重试次数,NTP服务器IP,是否修改系统时间, 返回成功次数 **/
|
||
int send_ntp_data( short int udp_local_port,int cycle_time, int probe_count,
|
||
char *hostname, int set_clock_if );
|
||
|
||
int sntp_init( void );
|
||
int sntp_release( void );
|
||
|
||
/************************************************************************/
|
||
#ifdef __cplusplus
|
||
}
|
||
#endif
|
||
|
||
|
||
#endif
|