VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/FirmwareOld/StdLib/BsdSocketLib/ns_netint.c@ 59499

Last change on this file since 59499 was 48674, checked in by vboxsync, 12 years ago

EFI: Export newly imported tinaocore UEFI sources to OSE.

  • Property svn:eol-style set to native
File size: 1.3 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#ifndef lint
19static 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
30uint16_t
31ns_get16(const u_char *src) {
32 uint16_t dst;
33
34 NS_GET16(dst, src);
35 return (dst);
36}
37
38uint32_t
39ns_get32(const u_char *src) {
40 uint32_t dst;
41
42 NS_GET32(dst, src);
43 return (dst);
44}
45
46void
47ns_put16(uint16_t src, u_char *dst) {
48 NS_PUT16(src, dst);
49}
50
51void
52ns_put32(uint32_t src, u_char *dst) {
53 NS_PUT32(src, dst);
54}
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette