*nix Documentation Project
·  Home
 +   man pages
·  Linux HOWTOs
·  FreeBSD Tips
·  *niX Forums

  man pages->Tru64 Unix man pages -> nsdispatch (3)              
Title
Content
Arch
Section
 

nsdispltch(3)

Contents


NAME    [Toc]    [Back]

       nsdispatch - name service switch dispatcher routine

SYNOPSIS    [Toc]    [Back]

       #include <nsswitch.h>

       int nsdispatch(
               void   *retval,   constns_dtabdtab[],const   char*
       database const char *method const ns_src  defaults[],  ...
       );

DESCRIPTION    [Toc]    [Back]

       The  nsdispatch()  function invokes the callback functions
       specified in dtab in the order given in /etc/nsswitch.conf
       for the database until a successful entry is found.

       retval  is  passed  to each callback function to modify as
       necessary (to pass back to the caller of nsdispatch())

       dtab is an array of ns_dtab  structures,  which  have  the
       following format:

        typedef struct {
                          const char *src;
                          int (*cb)(void *retval, void *cb_data, va_list ap);
                          void *cb_data;
                           } ns_dtab;


       For  each  source  type that is implemented, an entry with
       src set to the name of the source, cb defined as  a  function
  which  handles  that  source, and cb_data is used to
       pass arbitrary data to the callback  function.   The  last
       entry  in dtab should contain NULL values for src, cb, and
       cb_data.

       defaults contains a list of default sources to try in  the
       case of a missing or corrupt nsswitch.conf(5), or if there
       isn't a relevant entry for database.  It is  an  array  of
       ns_src structures, which have the following format:

       typedef struct {
                          const char *src;
                          u_int32_t flags;
                             } ns_src;


       For each default source type, an entry with src set to the
       name of the source, and flags set to  the  relevant  flags
       (usually   NS_SUCCESS; refer to Callback return values for
       more information).            The last entry  in  defaults
       should have src set to NULL and flags set to 0.

       For  convenience,  a  global  variable  defined as: extern
       const ns_src __nsdefaultsrc[];  exists  which  contains  a
       single  default entry for `files' for use by callers which
       don't require complicated default rules.

       `...' are optional extra arguments, which  are  passed  to
       the  appropriate  callback function as a variable argument
       list of the type va_list.


   Valid Source Types    [Toc]    [Back]
       Whilst there is support for arbitrary sources, the following
  #defines  for commonly implemented sources are available:


       #define                     value
                  NSSRC_FILES  "files"
                  NSSRC_DNS    "dns"
                  NSSRC_NIS    "nis"
                  NSSRC_COMPAT "compat"

       Refer to nsswitch.conf(5) for a  complete  description  of
       what each source type is.

   Callback Return Values    [Toc]    [Back]
       The  callback functions should return one of the following
       values depending upon status of the lookup:

                  Return value   Status code
                  NS_SUCCESS     success
                  NS_NOTFOUND    notfound
                  NS_UNAVAIL     unavail
                  NS_TRYAGAIN    tryagain

       Refer to nsswitch.conf(5) for a  complete  description  of
       what each source type is.

LEGAL NOTICES    [Toc]    [Back]

       Statements about third-party trademarks, copyrights, documentation
 distribution rights, and so  forth  go  here  if
       these statements must appear in formatted output.

SEE ALSO    [Toc]    [Back]

      
      
       Functions:stdarg(3), ypclnt(3)

       Others: nsswitch.conf(5)



                                                    nsdispltch(3)
[ Back ]
 Similar pages
Name OS Title
nsdispatch FreeBSD name-service switch dispatcher routine
nsdispatch NetBSD name-service switch dispatcher routine
nsswitch.conf Tru64 name-service switch configuration file
nsswitch.conf HP-UX configuration file for the name-service switch
nsswitch.conf FreeBSD name-service switch configuration file
switch HP-UX configuration file for the name-service switch
nsquery HP-UX query the Name Service Switch backend libraries
winbindd.8 IRIX Name Service Switch daemon for resolving names from NT servers
nsswitch.conf Linux System Databases and Name Service Switch configuration file
Xserver HP-UX X Window System display server dispatcher
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service