Diff for /libaitcfg/inc/aitpwd.h between versions 1.1.2.6 and 1.1.2.11

version 1.1.2.6, 2012/09/19 11:47:38 version 1.1.2.11, 2012/09/19 13:44:25
Line 48  SUCH DAMAGE. Line 48  SUCH DAMAGE.
   
   
 #include <time.h>  #include <time.h>
   #include <sys/types.h>
   #include <aitio.h>
   
   
 #define PWD_CRIT_NAME   0  #define PWD_CRIT_NAME   0
Line 186  int cfgConcatPasswd(pwd_root_t * __restrict pwd, pwd_r Line 188  int cfgConcatPasswd(pwd_root_t * __restrict pwd, pwd_r
  * @pwd = Password root   * @pwd = Password root
  * @csName = Username   * @csName = Username
  * @csPass = Password   * @csPass = Password
 * return: -1 error, 1 deny or 0 allow * return: =NULL deny or !=NULL allow
  */   */
int cfgAuthPasswd(pwd_root_t * __restrict pwd, const char *csName, const char *csPass);const struct tagUser *cfgAuthPasswd(pwd_root_t * __restrict pwd, 
                 const char *csName, const char *csPass);
   
 /*  /*
  * cfg_findPasswdBy() - Find user by criteria position in list   * cfg_findPasswdBy() - Find user by criteria position in list
Line 198  int cfgAuthPasswd(pwd_root_t * __restrict pwd, const c Line 201  int cfgAuthPasswd(pwd_root_t * __restrict pwd, const c
  * @arg1 = Username | UID | GID   * @arg1 = Username | UID | GID
  * return: NULL not found item or error and !=NULL found item   * return: NULL not found item or error and !=NULL found item
  */   */
struct tagUser *cfg_findPasswdBy(pwd_root_t * __restrict pwd, int criteria, ...);const struct tagUser *cfg_findPasswdBy(pwd_root_t * __restrict pwd, int criteria, ...);
 /*  /*
  * cfg_unsetPasswd() - Unset item from passwords and free resources   * cfg_unsetPasswd() - Unset item from passwords and free resources
  *   *
Line 212  int cfg_unsetPasswd(pwd_root_t * __restrict pwd, int c Line 215  int cfg_unsetPasswd(pwd_root_t * __restrict pwd, int c
  * cfg_setPasswd() - Set item in password or adding new item if not exists   * cfg_setPasswd() - Set item in password or adding new item if not exists
  *   *
  * @cfg = Password root   * @cfg = Password root
    * @fields = Meaning continuous field
  * @csName = Username   * @csName = Username
 * @csPass = Password * @arg1 = Password
 * @uid = UID * @arg2 = UID
 * @gid = GID * @arg3 = GID
 * @Class = Login class * @arg4 = Login class
 * @change = Chage date * @arg5 = Chage date
 * @expire = Expire date * @arg6 = Expire date
 * @csRealm = Realm * @arg7 = Realm
 * @csHome = Home dir * @arg8 = Home dir
 * @csShell = Shell * @arg9 = Shell
  * return: 0 nothing changed, -1 error, 1 found and updated item or 2 added new item   * return: 0 nothing changed, -1 error, 1 found and updated item or 2 added new item
  */   */
int cfg_setPasswd(pwd_root_t * __restrict pwd, const char *csName, const char *csPass, int cfg_setPasswd(pwd_root_t * __restrict pwd, u_char fields, const char *csName, ...);
                unsigned int uid, unsigned int gid, const char *csClass,  
                unsigned int change, unsigned int expire, const char *csRealm,  
                const char *csHome, const char *csShell); 
 /*  /*
  * cfg_getPasswd() - Get item from passwords and return structure from it   * cfg_getPasswd() - Get item from passwords and return structure from it
  *   *

Removed from v.1.1.2.6  
changed lines
  Added in v.1.1.2.11


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>