diff options
author | Samba Release Account <samba-bugs@samba.org> | 1997-07-31 18:47:26 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1997-07-31 18:47:26 +0000 |
commit | 363b9a2739e9e39d1f69625e6647c6c9047a901a (patch) | |
tree | 1fb3f2f19bbcd15922468bf125ba1314220cd915 /source3/include | |
parent | f2b7e75f0cbff28b082150ba5ec60617b92bd545 (diff) | |
download | samba-363b9a2739e9e39d1f69625e6647c6c9047a901a.tar.gz samba-363b9a2739e9e39d1f69625e6647c6c9047a901a.tar.bz2 samba-363b9a2739e9e39d1f69625e6647c6c9047a901a.zip |
loadparm.c: Added new netbios aliases parameter (code from Cisco)
nameannounce.c: Code to announce aliases as well as our own names.
namedbsubnet.c: Code to add the aliases to the server list.
nameserv.c: Code to defend our aliases on the namelist.
namework.c: Code to check it's one of our aliases.
nmbd.c: Code to initialise the aliases.
proto.h: Fixup protos.
util.c: Code to check it's one of our aliases.
All above code based on code for 1.9.16p11 donated by Cisco
from Ben Woodard <bwoodard@luthien.cisco.com>
Jeremy (jallison@whistle.com)
(This used to be commit a2ce1c0cb1331551ff728dcfe3260fab4cd827e5)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 23f7f191fb..0fa4251b82 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -146,6 +146,7 @@ char *lp_wins_server(void); char *lp_interfaces(void); char *lp_socket_address(void); char *lp_nis_home_map_name(void); +char *lp_netbios_aliases(void); BOOL lp_dns_proxy(void); BOOL lp_wins_support(void); BOOL lp_wins_proxy(void); @@ -871,8 +872,8 @@ uint32 file_size(char *file_name); char *attrib_string(int mode); int StrCaseCmp(const char *s, const char *t); int StrnCaseCmp(const char *s, const char *t, int n); -BOOL strequal(char *s1,char *s2); -BOOL strnequal(char *s1,char *s2,int n); +BOOL strequal(const char *s1,const char *s2); +BOOL strnequal(const char *s1,const char *s2,int n); BOOL strcsequal(char *s1,char *s2); void strlower(char *s); void strupper(char *s); @@ -965,6 +966,7 @@ void free_namearray(name_compare_entry *name_array); BOOL fcntl_lock(int fd,int op,uint32 offset,uint32 count,int type); int file_lock(char *name,int timeout); void file_unlock(int fd); +BOOL is_myname(const char *s); /*The following definitions come from vt_mode.c */ |