source: rtems/cpukit/libnetworking/libc/ns_netint.c @ 9d647dfc

4.104.114.84.95
Last change on this file since 9d647dfc was ff0f694d, checked in by Joel Sherrill <joel.sherrill@…>, on 08/20/98 at 21:47:37

Fixed many warnings.

  • Property mode set to 100644
File size: 1.4 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#if !defined(__rtems__)
19#if !defined(LINT) && !defined(CODECENTER)
20static char rcsid[] = "$Id$";
21#endif /* not lint */
22#endif /* not rtems */
23
24/* Import. */
25
26#include <sys/types.h>
27#include <sys/socket.h>
28
29#include <netinet/in.h>
30#include <arpa/nameser.h>
31
32u_int
33ns_get16(const u_char *src) {
34        u_int dst;
35
36        NS_GET16(dst, src);
37        return (dst);
38}
39
40u_long
41ns_get32(const u_char *src) {
42        u_long dst;
43
44        NS_GET32(dst, src);
45        return (dst);
46}
47
48void
49ns_put16(u_int src, u_char *dst) {
50        NS_PUT16(src, dst);
51}
52
53void
54ns_put32(u_long src, u_char *dst) {
55        NS_PUT32(src, dst);
56}
Note: See TracBrowser for help on using the repository browser.