Last change
on this file since 58459 was 58459, checked in by vboxsync, 9 years ago |
EFI/Firmware: 'svn merge /vendor/edk2/UDK2010.SR1 /vendor/edk2/current .', reverting and removing files+dirs listed in ReadMe.vbox, resolving conflicts with help from ../UDK2014.SP1/. This is a raw untested merge.
|
-
Property svn:eol-style
set to
native
|
File size:
1.2 KB
|
Line | |
---|
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 | /* Import. */
|
---|
19 |
|
---|
20 | #include <sys/types.h>
|
---|
21 | #include <sys/socket.h>
|
---|
22 |
|
---|
23 | #include <netinet/in.h>
|
---|
24 | #include <arpa/nameser.h>
|
---|
25 |
|
---|
26 | uint16_t
|
---|
27 | ns_get16(const u_char *src) {
|
---|
28 | uint16_t dst;
|
---|
29 |
|
---|
30 | NS_GET16(dst, src);
|
---|
31 | return (dst);
|
---|
32 | }
|
---|
33 |
|
---|
34 | uint32_t
|
---|
35 | ns_get32(const u_char *src) {
|
---|
36 | uint32_t dst;
|
---|
37 |
|
---|
38 | NS_GET32(dst, src);
|
---|
39 | return (dst);
|
---|
40 | }
|
---|
41 |
|
---|
42 | void
|
---|
43 | ns_put16(uint16_t src, u_char *dst) {
|
---|
44 | NS_PUT16(src, dst);
|
---|
45 | }
|
---|
46 |
|
---|
47 | void
|
---|
48 | ns_put32(uint32_t src, u_char *dst) {
|
---|
49 | NS_PUT32(src, dst);
|
---|
50 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.