aboutsummaryrefslogtreecommitdiff
path: root/contrib/bind9/lib/bind/irs/irp_nw.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/bind9/lib/bind/irs/irp_nw.c')
-rw-r--r--contrib/bind9/lib/bind/irs/irp_nw.c53
1 files changed, 12 insertions, 41 deletions
diff --git a/contrib/bind9/lib/bind/irs/irp_nw.c b/contrib/bind9/lib/bind/irs/irp_nw.c
index ea6861241980..b285120c958c 100644
--- a/contrib/bind9/lib/bind/irs/irp_nw.c
+++ b/contrib/bind9/lib/bind/irs/irp_nw.c
@@ -16,7 +16,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static const char rcsid[] = "$Id: irp_nw.c,v 1.1.206.2 2006/03/10 00:17:21 marka Exp $";
+static const char rcsid[] = "$Id: irp_nw.c,v 1.2.18.2 2006/03/10 00:20:08 marka Exp $";
#endif /* LIBC_SCCS and not lint */
#if 0
@@ -79,9 +79,7 @@ static void free_nw(struct nwent *nw);
/* Public */
-
-
-/*
+/*%
* struct irs_nw * irs_irp_nw(struct irs_acc *this)
*
*/
@@ -117,9 +115,7 @@ irs_irp_nw(struct irs_acc *this) {
/* Methods */
-
-
-/*
+/*%
* void nw_close(struct irs_nw *this)
*
*/
@@ -136,10 +132,7 @@ nw_close(struct irs_nw *this) {
memput(this, sizeof *this);
}
-
-
-
-/*
+/*%
* struct nwent * nw_byaddr(struct irs_nw *this, void *net,
* int length, int type)
*
@@ -152,7 +145,7 @@ nw_byaddr(struct irs_nw *this, void *net, int length, int type) {
char *body = NULL;
size_t bodylen;
int code;
- char paddr[24]; /* bigenough for ip4 w/ cidr spec. */
+ char paddr[24]; /*%< bigenough for ip4 w/ cidr spec. */
char text[256];
if (inet_net_ntop(type, net, length, paddr, sizeof paddr) == NULL) {
@@ -189,10 +182,7 @@ nw_byaddr(struct irs_nw *this, void *net, int length, int type) {
return (nw);
}
-
-
-
-/*
+/*%
* struct nwent * nw_byname(struct irs_nw *this, const char *name, int type)
*
*/
@@ -241,10 +231,7 @@ nw_byname(struct irs_nw *this, const char *name, int type) {
return (nw);
}
-
-
-
-/*
+/*%
* void nw_rewind(struct irs_nw *this)
*
*/
@@ -273,16 +260,7 @@ nw_rewind(struct irs_nw *this) {
return;
}
-
-
-
-
-
-/*
- * struct nwent * nw_next(struct irs_nw *this)
- *
- * Notes:
- *
+/*%
* Prepares the cache if necessary and returns the first, or
* next item from it.
*/
@@ -324,12 +302,7 @@ nw_next(struct irs_nw *this) {
return (nw);
}
-
-
-
-
-
-/*
+/*%
* void nw_minimize(struct irs_nw *this)
*
*/
@@ -346,11 +319,7 @@ nw_minimize(struct irs_nw *this) {
/* private. */
-
-
-/*
- * static void free_passwd(struct passwd *pw);
- *
+/*%
* deallocate all the memory irp_unmarshall_pw allocated.
*
*/
@@ -375,3 +344,5 @@ free_nw(struct nwent *nw) {
if (nw->n_addr != NULL)
free(nw->n_addr);
}
+
+/*! \file */