]> git.proxmox.com Git - mirror_edk2.git/blob - StdLib/BsdSocketLib/ns_netint.c
Remove SocketPkg references
[mirror_edk2.git] / StdLib / BsdSocketLib / ns_netint.c
1 /*
2 * Copyright (c) 1996 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 lint
19 static char rcsid[] = "$Id: ns_netint.c,v 1.1.1.1 2003/11/19 01:51:33 kyu3 Exp $";
20 #endif
21
22 /* Import. */
23
24 #include <sys/types.h>
25 #include <sys/socket.h>
26
27 #include <netinet/in.h>
28 #include <arpa/nameser.h>
29
30 uint16_t
31 ns_get16(const u_char *src) {
32 uint16_t dst;
33
34 NS_GET16(dst, src);
35 return (dst);
36 }
37
38 uint32_t
39 ns_get32(const u_char *src) {
40 uint32_t dst;
41
42 NS_GET32(dst, src);
43 return (dst);
44 }
45
46 void
47 ns_put16(uint16_t src, u_char *dst) {
48 NS_PUT16(src, dst);
49 }
50
51 void
52 ns_put32(uint32_t src, u_char *dst) {
53 NS_PUT32(src, dst);
54 }