Displaying 1 result from an estimated 1 matches for "userdb_module_interface".
2006 Feb 03
1
passwd-userdb with args
...tem_user", pw->pw_name);
auth_stream_reply_add(reply, "uid", dec2str(pw->pw_uid));
auth_stream_reply_add(reply, "gid", dec2str(pw->pw_gid));
auth_stream_reply_add(reply, "home", pw->pw_dir);
callback(reply, auth_request);
}
struct userdb_module_interface userdb_passwd = {
"passwd",
! NULL, NULL, NULL,
passwd_lookup
};
--- 45,118 ----
pw->pw_name, auth_request->user);
}
+ t_push();
+ str = t_str_new(256);
+ table = auth_request_get_var_expand_table(auth_request, NULL);
+
reply = auth_stream_reply_init...