/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2007 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* nis/getnetent.c -- "nis" backend for nsswitch "networks" database
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include "nis_common.h"
#include <synch.h>
#include <netdb.h>
#include <string.h>
static nss_status_t
void *a;
{
}
static nss_status_t
void *a;
{
char *pnull;
return (NSS_UNAVAIL); /* it's really ENOMEM */
/*
* if not found, try again with the untruncated address string
* that has the trailing zero(s)
*/
*pnull = '.';
addrstr, 0);
}
return (rc);
}
};
/*ARGSUSED*/
{
return (_nss_nis_constr(net_ops,
"networks.byaddr"));
}
/*
* Takes an unsigned integer in host order, and returns a printable
* string for it as a network number. To allow for the possibility of
* naming subnets, only trailing dot-zeros are truncated. The location
* where the string is truncated (or set to '\0') is returned in *pnull.
*/
static int
{
char *p;
int addr;
if (buf == 0)
return (1);
if (p == NULL)
return (1);
*p = 0;
*pnull = p;
if (p == NULL)
return (1);
if (p == NULL)
return (1);
*p = 0;
*pnull = p;
if (p == NULL)
return (1);
*p = 0;
*pnull = p;
}
return (0);
}