4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #
pragma ident
"%Z%%M% %I% %E% SMI"
30 * ASSERTION: Test network byte-ordering routines.
33 #include
<sys
/isa_defs
.h
>
38 before
[1] = 0x11223344LL
;
39 before
[2] = 0x1122334455667788LL
;
43 after
[1] = 0x44332211LL
;
44 after
[2] = 0x8877665544332211LL
;
47 after
[1] = 0x11223344LL
;
48 after
[2] = 0x1122334455667788LL
;
53 /after
[0] != htons(before
[0])/
55 printf("%x rather than %x", htons(before
[0]), after
[0]);
60 /after
[0] != ntohs(before
[0])/
62 printf("%x rather than %x", ntohs(before
[0]), after
[0]);
67 /after
[1] != htonl(before
[1])/
69 printf("%x rather than %x", htonl(before
[1]), after
[1]);
74 /after
[1] != ntohl(before
[1])/
76 printf("%x rather than %x", ntohl(before
[1]), after
[1]);
81 /after
[2] != htonll(before
[2])/
83 printf("%x rather than %x", htonll(before
[2]), after
[2]);
88 /after
[2] != ntohll(before
[2])/
90 printf("%x rather than %x", ntohll(before
[2]), after
[2]);