Fix/improve some comments.

This commit is contained in:
gwr 1995-09-23 03:31:50 +00:00
parent e23598f24f
commit bdad6c4104
2 changed files with 7 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: iodesc.h,v 1.3 1995/09/18 21:19:28 pk Exp $ */
/* $NetBSD: iodesc.h,v 1.4 1995/09/23 03:31:50 gwr Exp $ */
/*
* Copyright (c) 1993 Adam Glass
@ -42,10 +42,10 @@
#define __SYS_LIBNETBOOT_IODESC_H
struct iodesc {
struct in_addr destip; /* destination ip address */
struct in_addr myip; /* my ip address */
u_short destport; /* destination port */
u_short myport; /* destination port */
struct in_addr destip; /* dest. ip addr, net order */
struct in_addr myip; /* local ip addr, net order */
u_short destport; /* dest. port, net order */
u_short myport; /* local port, net order */
u_long xid; /* transaction identification */
u_char myea[6]; /* my ethernet address */
struct netif *io_netif;

View File

@ -1,4 +1,4 @@
/* $NetBSD: net.h,v 1.7 1995/09/18 21:19:32 pk Exp $ */
/* $NetBSD: net.h,v 1.8 1995/09/23 03:31:51 gwr Exp $ */
/*
* Copyright (c) 1993 Adam Glass
@ -78,6 +78,7 @@ extern char domainname[FNAME_SIZE];
extern int domainnamelen;
extern char ifname[IFNAME_SIZE];
/* All of these are in network order. */
extern struct in_addr myip;
extern struct in_addr rootip;
extern struct in_addr swapip;