mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-08 21:49:06 -04:00
22 lines
485 B
C
22 lines
485 B
C
/* $NetBSD: numtohost.c,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
|
|
|
|
#include "config.h"
|
|
|
|
#include "ntp_stdlib.h"
|
|
#include "ntp_calendar.h"
|
|
#include "ntp_fp.h"
|
|
|
|
#include "unity.h"
|
|
|
|
void test_LoopbackNetNonResolve(void) {
|
|
/* A loopback address in 127.0.0.0/8 is chosen, and
|
|
* numtohost() should not try to resolve it unless
|
|
* it is 127.0.0.1
|
|
*/
|
|
|
|
u_int32 input = 127*256*256*256 + 1*256 + 1; // 127.0.1.1
|
|
|
|
TEST_ASSERT_EQUAL_STRING("127.0.1.1", numtohost(htonl(input)));
|
|
}
|
|
|