summaryrefslogtreecommitdiff
path: root/source3/script
AgeCommit message (Collapse)AuthorFilesLines
1997-12-01remove stutter from closing instructionsHerb Lewis1-2/+2
(This used to be commit 358fcbf2e4ca274d7ef34e3cac0bc7fd72732ec5)
1997-10-07JHT ==> Fixing blocksize argument. Patch by: Llyod WhitemanJohn Terpstra1-1/+1
<lwhitman@stm2.nrl.navy.mil> (This used to be commit 67c1e87e8fda724da6dd3663641639167dd33a16)
1997-09-19Makefile: Changed proto: target to not include c files not used currently.Jeremy Allison1-1/+1
Caused proto.h to be from a sorted list of C files. arcfour.h: Added prototypes. client.c: Added username%password in environment patch from John Blair <jdblair@frodo.tucc.uab.edu> loadparm.c: Added username manipulation code from Peter McCool [SMTP:peter@qimr.edu.au] username.c: Added username manipulation code from Peter McCool [SMTP:peter@qimr.edu.au] mkproto.awk: Added arc4_key type. proto.h: Updated & sorted. Jeremy (jallison@whistle.com) (This used to be commit 97ed4fea67095dfb83227e7b5fffc236ff277e02)
1997-09-04Fixed up determination of client type for PROTOCOL_NT1. Uses clientJeremy Allison1-1/+1
capabilities bits in session_setup_and_X to decide. Made remote_arch an enum as well as a string, for easier use. Jeremy (jallison@whistle.com) (This used to be commit 99080705a2d0adcb25e1eecbe517a2fac2779baa)
1997-08-30Adding codepage definition files and codepage file compiler/decompiler.Jeremy Allison2-0/+69
Adding install/uninstall scripts for compiled codepage files. Preparing for dynamic codepage loading. Jeremy (jallison@whistle.com) (This used to be commit e3fc9533bd87d0d520e3dac98261e42370907b11)
1997-08-28added a new type to mkproto.awk so it can handle shmem.cAndrew Tridgell1-1/+1
in general if you add a new type that is returned by a non-static function then just add it to the list of known types in mkproto.awk (This used to be commit 1d4ce07435f3d6dac41a2616a044bcd441dbaced)
1996-08-17- added support for Amiga-unix (based on BSD I think)Andrew Tridgell1-2/+2
- changed the order of PROGS and SPROGS in Makefile (SPROGS first) - another 64 bit cleanup (for INADDR_NONE) - added paranoia code in DirCacheAdd() to detect looping - fixed important DirCache flush bug - rewrote the NetServerEnum code after I found it could return servers from multiple workgroups at once, and this could cause browsing havoc. Now a null workgroup query is equivalent to a query for the servers primary workgroup - got rid of my_workgroup() - got rid of "workgroup = *" comment in Makefile. We no longer support a workgroup of *, users must set the workgroup explicitly - the wins.dat file was being stored in a different format to what it was being loaded in - this could cause havoc. fixed. - uppercase our netbios name and the workgroup name at startup - if accept fails in main loop when running as a daemon then continue, don't just exit! - don't use ./ on smbclient in smbtar - better code to detect if a process exists (This used to be commit ec3d53963064b50ff33e8eff47812aac82f164ba)
1996-08-16fixed installscripts.sh so it no longer creates ] and [ directoriesAndrew Tridgell1-1/+1
every time its run! (This used to be commit f84199aad60c10a24f66a1270a6f7157600d0fca)
1996-08-15- added FAST_SHARE_MODES codeAndrew Tridgell1-1/+1
- added some named pipe code from Jim (This used to be commit c94866e9e44ea1eb72da06bc65ef1c032ae8e0c9)
1996-07-05Added uninstallation from Makefile, either in parts or total uninstallSamba Release Account3-0/+111
Dan (This used to be commit b6343dd09cdbc52677975405c2a85595ad152e8c)
1996-07-05Changed install scripts so they don't have hardcoded valuesSamba Release Account3-26/+48
Dan (This used to be commit 2eccc5eea289fa4b6af120d0bc92d568ca925482)
1996-06-29luke's first attempt at using cvsSamba Release Account1-5/+0
accidentally updated the Makefile updated the name database structure (again!). this time, there is one name database per local interface. there is also a pseudo-interface on ip 255.255.255.255. its purpose is to store WINS name entries. all the local interface name databases store SELF names only. the WINS name database stores non-special browser names. added wins.dat file: records WINS entries in ascii format. this is reloaded when nmbd restarts. added repeating code for response packets. timer is in seconds only at the moment. updated the response queue code to deal with samba registering with a WINS server a bit better (added more cases when a response isn't received). tidied up the response packet processing code and expire_response_queue() code. added cross references between response received and await-response expired code. added over-zealous code that checks all machines that register with samba as a WINS server (every 10 minutes i think): to see whether they are still alive or not (see rfc1001.txt) bug reported by terry@ren.pc.athabascau.ca: DNSFAILed names _stay_ as DNSFAIL, even though the machine may come back up and REGISTER. removed update_from_reg() function. it's not necessary, and it does too much. added code that announces on each local interface samba's ttl as zero and servertype as zero when nmbd is kill -TERMed first attempt at putting the first functionality of samba browsing back in (remote subnets should have samba appear in a workgroup specified through the lmhosts file) lots of other miscellaneous tidying up / chopping about. (This used to be commit 7e8c60cfe54060860e5ce20b1c3b8ec6aa5c54da)
1996-06-19 - deleted reduntant blank line at end of file (JHT)Samba Release Account1-1/+0
(This used to be commit 7960522e18bb34cba4fbc6ef0d68485d484c9cad)
1996-06-17Added source filename to give crude indexSamba Release Account1-0/+9
Dan 17 June 1996 (This used to be commit 5a72a6c8dfe3a0898db514c35a9d704c3627c41d)
1996-06-10got rid of a lot of redundent header files as we now globally generateAndrew Tridgell1-0/+39
prototypes automatically using "make proto". This is much less prone to error than the old method of manually adding prototypes (This used to be commit b551dc98f7cc194a5fc2e67a4ebae7fd67a01bbc)
1996-06-08- added comments to byteorder.h explaining how it works.Andrew Tridgell1-2/+2
- fixed problem with installscripts if srcdir is not set - fixed ptr init bug in interface.c - changed default lookup type in nmblookup to match nbtstat under NT - new quotas fixes for sunos and solaris (This used to be commit e775576f026d282473256aeac6fef65a85acd98e)
1996-06-04add dummy quotas fnAndrew Tridgell1-1/+1
fix typo in reply to backup lists (This used to be commit bc4a2994377ab078d3d1a900f79fda9dfe4d0e6a)
1996-06-04a huge pile of changes :-)Andrew Tridgell1-0/+39
The biggest thing is the integration of Lukes new nmbd. Its still largely untested, so we will really need some feedback I've also added auto prototype generation and cleaned up a lot of minor things as a result (This used to be commit 0d8dcfa13c527ec2c8aca39ba49c09e4e694b26c)
1996-05-30- added an entry on WinDD to samba.faqAndrew Tridgell1-0/+26
- added a sample smb.conf from Thoralf.Freitag@remserv.rz.fhtw-berlin.de - print the errno when you get a can't change directory error - added installscripts.sh from James_K._Foote.PARC@xerox.com (This used to be commit 48c6b86d4c580d62ef46132dc04ce2b1d14e21e8)
1996-05-04Initial version imported to CVS Samba Release Account7-0/+327
(This used to be commit 291551d80711daab7b7581720bcd9a08d6096517)