Networking_SntpServer_Start 函数
标头: #include <applibs/networking.h>
注册并启动网络接口的 SNTP 服务器。
int Networking_SntpServer_Start(const char *networkInterfaceName, const Networking_SntpServerConfig *sntpServerConfig);
参数
networkInterfaceName
要配置的网络接口的名称。sntpServerConfig
指向表示 SNTP 服务器配置的 Networking_SntpServerConfig 结构的指针。
错误
如果遇到错误并设置为 errno
错误值,则返回 -1。
EACCES:调用应用程序没有 SntpService 功能。
EFAULT:
networkInterfaceName
参数为 NULL。EFAULT:
sntpServerConfig
参数为 NULL。ENOENT:
networkInterfaceName
参数引用不存在的接口。EPERM:网络接口上不允许此操作。
EAGAIN:网络堆栈未准备就绪。
还可以指定任何其他 errno
错误;此类错误不是确定性的,并且可能不会通过系统更新保留相同的行为。
返回值
如果成功,则返回 0,如果失败,则返回 -1,在这种情况下 errno
,将设置为错误值。
言论
如果 SNTP 服务器已在运行并附加到接口,则此函数将返回成功。 如果 networkInterfaceName 接口关闭或禁用,则为接口注册 SNTP 服务器,但服务器未启动。
应用程序清单要求
应用程序清单必须包含 SntpService 功能。