| The GNU C Library | www.imodulo.com · 2003-04-05 | ||
| [ Software | Documentation | Contact ] |
The basic idea is to put the implementation of the different services offered to access the databases in separate modules. This has some advantages:
Contributors can add new services without adding them to GNU C Library.
The modules can be updated separately.
The C library image is smaller.
To fulfill the first goal above the ABI of the modules will be described below. For getting the implementation of a new service right it is important to understand how the functions in the modules get called. They are in no way designed to be used by the programmer directly. Instead the programmer should only use the documented and standardized functions to access the databases.
The databases available in the NSS are
aliasesMail aliases
ethersEthernet numbers,
groupGroups of users, Group Database.
hostsHost names and numbers, Host Names.
netgroupNetwork wide list of host and users, Netgroup Database.
networksNetwork names and numbers, Networks Database.
protocolsNetwork protocols, Protocols Database.
passwdUser passwords, User Database.
rpcRemote procedure call names and numbers,
servicesNetwork services, Services Database.
shadowShadow user passwords,
There will be some more added later (automount, bootparams, netmasks, and publickey).
| © Free Software Foundation, Inc. |