10Sstevel@tonic-gate /* 2*11038SRao.Shoaib@Sun.COM * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") 30Sstevel@tonic-gate * Copyright (c) 1996,1999 by Internet Software Consortium. 40Sstevel@tonic-gate * 50Sstevel@tonic-gate * Permission to use, copy, modify, and distribute this software for any 60Sstevel@tonic-gate * purpose with or without fee is hereby granted, provided that the above 70Sstevel@tonic-gate * copyright notice and this permission notice appear in all copies. 80Sstevel@tonic-gate * 9*11038SRao.Shoaib@Sun.COM * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES 10*11038SRao.Shoaib@Sun.COM * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11*11038SRao.Shoaib@Sun.COM * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR 12*11038SRao.Shoaib@Sun.COM * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13*11038SRao.Shoaib@Sun.COM * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14*11038SRao.Shoaib@Sun.COM * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT 15*11038SRao.Shoaib@Sun.COM * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 160Sstevel@tonic-gate */ 170Sstevel@tonic-gate 180Sstevel@tonic-gate /* 19*11038SRao.Shoaib@Sun.COM * $Id: irs_p.h,v 1.3 2005/04/27 04:56:30 sra Exp $ 200Sstevel@tonic-gate */ 210Sstevel@tonic-gate 220Sstevel@tonic-gate #ifndef _IRS_P_H_INCLUDED 230Sstevel@tonic-gate #define _IRS_P_H_INCLUDED 240Sstevel@tonic-gate 250Sstevel@tonic-gate #include <stdio.h> 260Sstevel@tonic-gate 270Sstevel@tonic-gate #include "pathnames.h" 280Sstevel@tonic-gate 290Sstevel@tonic-gate #define IRS_SV_MAXALIASES 35 300Sstevel@tonic-gate 310Sstevel@tonic-gate struct lcl_sv { 320Sstevel@tonic-gate FILE * fp; 330Sstevel@tonic-gate char line[BUFSIZ+1]; 340Sstevel@tonic-gate struct servent serv; 350Sstevel@tonic-gate char * serv_aliases[IRS_SV_MAXALIASES]; 360Sstevel@tonic-gate }; 370Sstevel@tonic-gate 380Sstevel@tonic-gate #define irs_nul_ng __irs_nul_ng 390Sstevel@tonic-gate #define map_v4v6_address __map_v4v6_address 400Sstevel@tonic-gate #define make_group_list __make_group_list 410Sstevel@tonic-gate #define irs_lclsv_fnxt __irs_lclsv_fnxt 420Sstevel@tonic-gate 430Sstevel@tonic-gate extern void map_v4v6_address(const char *src, char *dst); 440Sstevel@tonic-gate extern int make_group_list(struct irs_gr *, const char *, 450Sstevel@tonic-gate gid_t, gid_t *, int *); 460Sstevel@tonic-gate extern struct irs_ng * irs_nul_ng(struct irs_acc *); 470Sstevel@tonic-gate extern struct servent * irs_lclsv_fnxt(struct lcl_sv *); 480Sstevel@tonic-gate 490Sstevel@tonic-gate #endif 50*11038SRao.Shoaib@Sun.COM 51*11038SRao.Shoaib@Sun.COM /*! \file */ 52