Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include
File: nss.h
/* Copyright (C) 1996-2018 Free Software Foundation, Inc.
[0] Fix | Delete
This file is part of the GNU C Library.
[1] Fix | Delete
[2] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[3] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[4] Fix | Delete
License as published by the Free Software Foundation; either
[5] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[6] Fix | Delete
[7] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[8] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[9] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[10] Fix | Delete
Lesser General Public License for more details.
[11] Fix | Delete
[12] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[13] Fix | Delete
License along with the GNU C Library; if not, see
[14] Fix | Delete
<http://www.gnu.org/licenses/>. */
[15] Fix | Delete
[16] Fix | Delete
/* Define interface to NSS. This is meant for the interface functions
[17] Fix | Delete
and for implementors of new services. */
[18] Fix | Delete
[19] Fix | Delete
#ifndef _NSS_H
[20] Fix | Delete
#define _NSS_H 1
[21] Fix | Delete
[22] Fix | Delete
#include <features.h>
[23] Fix | Delete
#include <stdint.h>
[24] Fix | Delete
[25] Fix | Delete
[26] Fix | Delete
__BEGIN_DECLS
[27] Fix | Delete
[28] Fix | Delete
/* Possible results of lookup using a nss_* function. */
[29] Fix | Delete
enum nss_status
[30] Fix | Delete
{
[31] Fix | Delete
NSS_STATUS_TRYAGAIN = -2,
[32] Fix | Delete
NSS_STATUS_UNAVAIL,
[33] Fix | Delete
NSS_STATUS_NOTFOUND,
[34] Fix | Delete
NSS_STATUS_SUCCESS,
[35] Fix | Delete
NSS_STATUS_RETURN
[36] Fix | Delete
};
[37] Fix | Delete
[38] Fix | Delete
[39] Fix | Delete
/* Data structure used for the 'gethostbyname4_r' function. */
[40] Fix | Delete
struct gaih_addrtuple
[41] Fix | Delete
{
[42] Fix | Delete
struct gaih_addrtuple *next;
[43] Fix | Delete
char *name;
[44] Fix | Delete
int family;
[45] Fix | Delete
uint32_t addr[4];
[46] Fix | Delete
uint32_t scopeid;
[47] Fix | Delete
};
[48] Fix | Delete
[49] Fix | Delete
[50] Fix | Delete
/* Overwrite service selection for database DBNAME using specification
[51] Fix | Delete
in STRING.
[52] Fix | Delete
This function should only be used by system programs which have to
[53] Fix | Delete
work around non-existing services (e.e., while booting).
[54] Fix | Delete
Attention: Using this function repeatedly will slowly eat up the
[55] Fix | Delete
whole memory since previous selection data cannot be freed. */
[56] Fix | Delete
extern int __nss_configure_lookup (const char *__dbname,
[57] Fix | Delete
const char *__string) __THROW;
[58] Fix | Delete
[59] Fix | Delete
__END_DECLS
[60] Fix | Delete
[61] Fix | Delete
#endif /* nss.h */
[62] Fix | Delete
[63] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function