Networking_DhcpServerConfig_SetLease 함수
헤더: #include <applibs/networking.h>
Networking_DhcpServerConfig 구조체에 임대 정보를 적용합니다.
int Networking_DhcpServerConfig_SetLease(Networking_DhcpServerConfig *dhcpServerConfig, struct in_addr startIpAddress, uint8_t ipAddressCount, struct in_addr subnetMask, struct in_addr gatewayAddress, uint32_t leaseTimeInHours);
매개 변수
dhcpServerConfig
업데이트할 Networking_DhcpServerConfig 구조체에 대한 포인터입니다.startIpAddress
임대할 주소 범위의 시작 IP 주소입니다.ipAddressCount
서버에서 임대할 수 있는 IP 주소 수입니다.subnetMask
IP 주소에 대한 서브넷 마스크입니다.gatewayAddress
네트워크 인터페이스의 게이트웨이 주소입니다.leaseTimeInHours
임대 기간(시간)입니다.
오류
오류가 발생하고 를 오류 값으로 설정 errno
하면 -1을 반환합니다.
- EFAULT: 매개 변수는
dhcpServerConfig
NULL입니다.
다른 errno
모든 오류도 지정할 수 있습니다. 이러한 오류는 결정적이지 않으며 시스템 업데이트를 통해 동일한 동작이 유지되지 않을 수 있습니다.
반환 값
성공의 경우 0을 반환하고 실패의 경우 -1을 반환합니다. 이 경우 errno
오류 값으로 설정됩니다.