]>
Commit | Line | Data |
---|---|---|
8a97ab44 A |
1 | /* |
2 | * Copyright (c) 1996,1999 by Internet Software Consortium. | |
3 | * | |
4 | * Permission to use, copy, modify, and distribute this software for any | |
5 | * purpose with or without fee is hereby granted, provided that the above | |
6 | * copyright notice and this permission notice appear in all copies. | |
7 | * | |
8 | * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS | |
9 | * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES | |
10 | * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE | |
11 | * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL | |
12 | * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR | |
13 | * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS | |
14 | * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS | |
15 | * SOFTWARE. | |
16 | */ | |
17 | ||
18 | #ifndef __APPLE__ | |
19 | #ifndef lint | |
20 | static const char rcsid[] = "$Id: ns_netint.c,v 1.1 2006/03/01 19:01:37 majka Exp $"; | |
21 | #endif | |
22 | #endif | |
23 | ||
24 | /* Import. */ | |
25 | ||
26 | #ifndef __APPLE__ | |
27 | #include "port_before.h" | |
28 | #endif | |
29 | ||
30 | #include <arpa/nameser.h> | |
31 | ||
32 | #ifndef __APPLE__ | |
33 | #include "port_after.h" | |
34 | #endif | |
35 | ||
36 | /* Public. */ | |
37 | ||
38 | u_int | |
39 | ns_get16(const u_char *src) { | |
40 | u_int dst; | |
41 | ||
42 | NS_GET16(dst, src); | |
43 | return (dst); | |
44 | } | |
45 | ||
46 | u_long | |
47 | ns_get32(const u_char *src) { | |
48 | u_long dst; | |
49 | ||
50 | NS_GET32(dst, src); | |
51 | return (dst); | |
52 | } | |
53 | ||
54 | void | |
55 | ns_put16(u_int src, u_char *dst) { | |
56 | NS_PUT16(src, dst); | |
57 | } | |
58 | ||
59 | void | |
60 | ns_put32(u_long src, u_char *dst) { | |
61 | NS_PUT32(src, dst); | |
62 | } |