~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/xpinstall/wizard/libxpnet/GUSI/include/arpa/inet.h

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
Import upstream version 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 1983, 1993
 
3
 *      The Regents of the University of California.  All rights reserved.
 
4
 *
 
5
 * Redistribution and use in source and binary forms, with or without
 
6
 * modification, are permitted provided that the following conditions
 
7
 * are met:
 
8
 * 1. Redistributions of source code must retain the above copyright
 
9
 *    notice, this list of conditions and the following disclaimer.
 
10
 * 2. Redistributions in binary form must reproduce the above copyright
 
11
 *    notice, this list of conditions and the following disclaimer in the
 
12
 *    documentation and/or other materials provided with the distribution.
 
13
 * [�3 Deleted as of 22Jul99, see
 
14
 *     ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
 
15
 *         for details]
 
16
 * 4. Neither the name of the University nor the names of its contributors
 
17
 *    may be used to endorse or promote products derived from this software
 
18
 *    without specific prior written permission.
 
19
 *
 
20
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 
21
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
22
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
23
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 
24
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
25
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 
26
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 
27
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 
28
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 
29
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 
30
 * SUCH DAMAGE.
 
31
 *
 
32
 *      @(#)inet.h      8.1 (Berkeley) 6/2/93
 
33
 */
 
34
 
 
35
#ifndef _INET_H_
 
36
#define _INET_H_
 
37
 
 
38
/* Adapted for GUSI by Matthias Neeracher <neeri@iis.ee.ethz.ch> */
 
39
 
 
40
/* External definitions for functions in inet(3) */
 
41
 
 
42
#include <sys/cdefs.h>
 
43
 
 
44
/* XNS mandates availability of xtonx() and uintx_t -- neeri */
 
45
 
 
46
#include <netinet/in.h>
 
47
#include <machine/endian.h>
 
48
 
 
49
__BEGIN_DECLS
 
50
in_addr_t               inet_addr __P((const char *));
 
51
int                             inet_aton __P((const char *, struct in_addr *));
 
52
in_addr_t               inet_lnaof __P((struct in_addr));
 
53
struct in_addr  inet_makeaddr __P((uint32_t , in_addr_t));
 
54
in_addr_t               inet_netof __P((struct in_addr));
 
55
in_addr_t               inet_network __P((const char *));
 
56
char                 *inet_ntoa __P((struct in_addr));
 
57
__END_DECLS
 
58
 
 
59
#endif /* !_INET_H_ */