Browse Source

Use in_addr_t not u_long.

OPENBSD_2_1
millert 27 years ago
parent
commit
ce40c01afc
2 changed files with 11 additions and 11 deletions
  1. +7
    -7
      src/include/arpa/inet.h
  2. +4
    -4
      src/include/netdb.h

+ 7
- 7
src/include/arpa/inet.h View File

@ -1,4 +1,4 @@
/* $OpenBSD: inet.h,v 1.3 1997/03/13 19:11:53 downsj Exp $ */
/* $OpenBSD: inet.h,v 1.4 1997/04/05 20:58:30 millert Exp $ */
/*
* ++Copyright++ 1983, 1993
@ -74,13 +74,13 @@
#include <sys/cdefs.h>
__BEGIN_DECLS
unsigned long inet_addr __P((const char *));
in_addr_t inet_addr __P((const char *));
int inet_aton __P((const char *, struct in_addr *));
unsigned long inet_lnaof __P((struct in_addr));
struct in_addr inet_makeaddr __P((u_long , u_long));
char * inet_neta __P((u_long, char *, size_t));
unsigned long inet_netof __P((struct in_addr));
unsigned long inet_network __P((const char *));
in_addr_t inet_lnaof __P((struct in_addr));
struct in_addr inet_makeaddr __P((in_addr_t , in_addr_t));
char * inet_neta __P((in_addr_t, char *, size_t));
in_addr_t inet_netof __P((struct in_addr));
in_addr_t inet_network __P((const char *));
char *inet_net_ntop __P((int, const void *, int, char *, size_t));
int inet_net_pton __P((int, const char *, void *, size_t));
char *inet_ntoa __P((struct in_addr));


+ 4
- 4
src/include/netdb.h View File

@ -1,4 +1,4 @@
/* $OpenBSD: netdb.h,v 1.3 1997/03/13 19:11:49 downsj Exp $ */
/* $OpenBSD: netdb.h,v 1.4 1997/04/05 20:58:28 millert Exp $ */
/*
* ++Copyright++ 1980, 1983, 1988, 1993
@ -93,13 +93,13 @@ struct hostent {
/*
* Assumption here is that a network number
* fits in an unsigned long -- probably a poor one.
* fits in an in_addr_t -- probably a poor one.
*/
struct netent {
char *n_name; /* official name of net */
char **n_aliases; /* alias list */
int n_addrtype; /* net address type */
unsigned long n_net; /* network # */
in_addr_t n_net; /* network # */
};
struct servent {
@ -137,7 +137,7 @@ struct hostent *gethostbyaddr __P((const char *, int, int));
struct hostent *gethostbyname __P((const char *));
struct hostent *gethostbyname2 __P((const char *, int));
struct hostent *gethostent __P((void));
struct netent *getnetbyaddr __P((unsigned long, int));
struct netent *getnetbyaddr __P((in_addr_t, int));
struct netent *getnetbyname __P((const char *));
struct netent *getnetent __P((void));
struct protoent *getprotobyname __P((const char *));


Loading…
Cancel
Save