diff options
author | Luke Leighton <lkcl@samba.org> | 1997-11-02 19:27:26 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1997-11-02 19:27:26 +0000 |
commit | eebb68b92e76c24262128a2d83113d7827198fd5 (patch) | |
tree | ff39cc2aa62e31cbfbe419551b4bce2347430e02 /source3/include | |
parent | e67c2e9dc64e8a9f848d2769c33eef1d09fdb3e1 (diff) | |
download | samba-eebb68b92e76c24262128a2d83113d7827198fd5.tar.gz samba-eebb68b92e76c24262128a2d83113d7827198fd5.tar.bz2 samba-eebb68b92e76c24262128a2d83113d7827198fd5.zip |
loadparm.c :
added "domain hosts allow" and "domain hosts deny". these are to be
used to specify which workstations can log in to a samba PDC from.
it is also used to check whether to add an initial machine password
into the smbpasswd database or not
smbpass.c :
added capability to add a machine password to the smbpasswd database.
***** the default uid is zero *****
rpc_pipes/pipenetlog.c :
use of "domain hosts allow/deny" parameters to allow login access.
proto.h :
usual.
(This used to be commit 2e7d3410306640aa6402e0506430a53988cc583e)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 99a194d5c5..e4601672e0 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -221,6 +221,8 @@ char *lp_domain_other_sids(void); char *lp_domain_groups(void); char *lp_domain_admin_users(void); char *lp_domain_guest_users(void); +char *lp_domain_hostsallow(void); +char *lp_domain_hostsdeny(void); BOOL lp_dns_proxy(void); BOOL lp_wins_support(void); BOOL lp_wins_proxy(void); @@ -847,7 +849,6 @@ int get_rpc_pipe_num(char *buf, int where); /*The following definitions come from rpc_pipes/pipenetlog.c */ -BOOL get_md4pw(char *md4pw, char *mach_acct); BOOL api_netlogrpcTNP(int cnum,int uid, char *param,char *data, int mdrcnt,int mprcnt, char **rdata,char **rparam, @@ -1050,6 +1051,7 @@ char *smb_errstr(char *inbuf); int pw_file_lock(char *name, int type, int secs); int pw_file_unlock(int fd); struct smb_passwd *get_smbpwnam(char *name); +BOOL add_smbpwnam(struct smb_passwd* pwd); /*The following definitions come from status.c */ |