summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
1998-03-17fix typosHerb Lewis1-2/+2
(This used to be commit c53ca2cc2fff39afc917c280196995fde159af94)
1998-03-17Fixes for the static data bugs & incorrect use of strtokJeremy Allison1-7/+11
that Andrew pointed out. Jeremy. (This used to be commit 734dde8d686827c387e17922fa6ac56af60780d9)
1998-03-17show full path in ps by setting it in argv[0]Andrew Tridgell1-2/+2
(This used to be commit 89a4dc6cf9175d5fcdd827d90e4fed26576a4570)
1998-03-17fixed call to execl() to get argv[0] right (thanks to Herb)Andrew Tridgell1-2/+2
(This used to be commit aaa4db4de3eb16d50d0263c8e69ace6217355f11)
1998-03-17changed the default MAXSTATUS from 1000 to 100000Andrew Tridgell1-2/+2
This number limits the number of simultaneous connections to the server. The 1000 limit is from a looong time ago when I couldn't imagine anyone wanting to have 1000 simultaneous clients. Now I hear that people are testing with such numbers. I wonder when I'll change it from 100k ? (This used to be commit bae865da2dca175a8fe25922aeee8e785521e19b)
1998-03-16add swat to build packageHerb Lewis5-14/+43
fix minor bug in findsmb (This used to be commit d21a4368d27c77b083ac30ae080649157255b9f7)
1998-03-16Adding the same change as was added to 1.9.18 branch to add theJeremy Allison15-135/+438
"name resolve order" parameter. source/Makefile: Re-ordered link for name resolve order code. source/clientgen.c: source/clientutil.c: Added calls to resolve_name(). source/includes.h: Added HPUX zombie fix. source/loadparm.c: Added new name resolve order parameter. source/namequery.c: Re-wrote to include parsing of lmhosts file, new resolve_name() function requested by John. source/nmbd.c: Tell resolve_name not to do WINS lookups if we are the WINS server. source/nmbd_lmhosts.c: Call lmhosts parsing functions in namequery.c source/password.c: Call resolve_name() to lookup security=server name. source/reply.c: source/time.c: source/trans2.c: "fake directory create times" fix from Jim Hague - hague@research.canon.com.au. source/util.c: Removed isalnum() test in Get_Hostname() that seems to cause problems on many systems. Jeremy. (This used to be commit 7f118970da7c43eaddcf92dc056d3e849f1e7d5c)
1998-03-16Lint was complaining about the following typedef in smb.h:Christopher R. Hertel1-1/+1
typedef enum { P_LOCAL,P_GLOBAL,P_SEPARATOR,P_NONE, } parm_class; I removed the trailing comma. Chris -)----- (This used to be commit ac7cd9cacf2493b52d4db50d4fd4b8b08adfe837)
1998-03-16Adding mention of %p substitution.Jeremy Allison2-5/+25
Jeremy. (This used to be commit d8e7e73f4d484c63be3055d215823610734361ac)
1998-03-16includes.h: Addition of NetBSD 1.3 fix, fix for HPUX 9.x, 10.x zombieJeremy Allison2-5/+16
problem. password.c: Fix for Thursby to stop Dave clients failing in share mode security (this was their bug - they were interpreting the uid field in share mode which is explicitly denied by the spec but it's easier for us to fix it than them :-). Jeremy. (This used to be commit 39372d9e20803d32c0c5b87226a72b007978baad)
1998-03-16changed the default "keepalive" value to 300 seconds.Andrew Tridgell3-7/+4
This is more important now that oplocks are being used. (This used to be commit 7bccd2c360a270df227c140aeecb943d8d187855)
1998-03-15changed the date formattingAndrew Tridgell1-3/+11
(This used to be commit 57aa1db47cda9c625cd1ef742fece14d14590590)
1998-03-15updated the imagesAndrew Tridgell8-2/+1
(This used to be commit bd0c390713fa5411999681d80b5057e6579fa414)
1998-03-15- claim the null connection after the session request to mak sure weAndrew Tridgell4-15/+24
have the netbios name - fix another kill connection bug (This used to be commit c634b799874795d42dae28fb4440ea452dc89b1b)
1998-03-15safer killing of connections - it ensures the process is still a validAndrew Tridgell1-7/+13
smbd when killing (This used to be commit 78675036e81e2cde7209d9e68956d71ef6661137)
1998-03-15- added the ability to kill off individual connections from SWAT (fromAndrew Tridgell7-320/+442
the status page) - split the claim_connection() code into its own file - fixed the claim_connection() code to lock the file when manipulating it - always claim a null connection at startup - fixed a bug in the pidfile code (This used to be commit abd4a17e21d12be3d1747e94ceb1915abaf135e3)
1998-03-15install jpeg filesAndrew Tridgell1-0/+7
(This used to be commit 02cb3801d772cc056df3afb7028d9bd74c8553be)
1998-03-15a smaller backgroundAndrew Tridgell2-1/+1
(This used to be commit bcec95740f96aa4a3b022f41e2167cc74afeea92)
1998-03-14added a background image based on Pauls SAMBA logo but manipulated aAndrew Tridgell2-1/+1
little with GIMP (This used to be commit 57f4dfcbf307ad4e261e59f0545d500b3bae71e5)
1998-03-14updated blurb some moreAndrew Tridgell1-0/+15
(This used to be commit 1c0d4c80068e6da13f0b5140c3e99c41a81468d5)
1998-03-14updated blurbAndrew Tridgell1-6/+1
(This used to be commit 52417e37a1db850f97f0c81457d04d0e9796d7c0)
1998-03-14put in the longer welcome blurbAndrew Tridgell1-1/+59
(This used to be commit 181e59f46520aeacc9f160b69abec4cb182219f2)
1998-03-14new files to support starting/stopping the serverAndrew Tridgell3-0/+248
(This used to be commit 087981009d57006ff80a0cf50891d4473f86f1bb)
1998-03-14added the ability to start/stop the server from SWAT.Andrew Tridgell5-73/+70
I needed to modify the way the pidfile is handled in nmbd and smbd to do this. Jeremy, you may wish to look at what I've done as it probably breaks the Whistle use of pidfiles. In particular I've removed the -f option and instead smbd and nmbd always create a pidfile in the lock directory. (This used to be commit 20bb22d61b986d2036c681fc33db60f2b2b3c1c7)
1998-03-14if a local parameter is changed at the global level then propogate theAndrew Tridgell3-1/+37
change to all shares that are currently set to the default value. (This used to be commit b0e1183b2cbeb7a3150b7250cd19d14c9e5508b6)
1998-03-14prototype updatesAndrew Tridgell1-1/+1
(This used to be commit a565ff605094ed5b05d82b59b7993a3088873733)
1998-03-14added another pathetic looking iconAndrew Tridgell1-0/+0
(This used to be commit 5b1fca9d3e995f2ea4dc2bcbef92c033463e9847)
1998-03-14- added separatorsAndrew Tridgell1-13/+43
- added "view config" button (This used to be commit 486a059fe169baedc605ee9bc0a0ca5a4165fe65)
1998-03-14another makeover of loadparm to support new stuff in swat andAndrew Tridgell9-216/+339
testparm. In particular I added: - ability to optionally save default values of all parameters when calling lp_load(). This can then be used to save only non-default parameters in lp_dump(). This makes the saved smb.conf (and viewed parameters in testparm) much shorter - ability to not load ipc share in lp_load() - separators in parm_table[] so parameters can be grouped logically. - flag to mark parameters that are local but which should be also viewed as global as far as parameters editing is concerned (This used to be commit f9af35da26e58fb0b644b5f0169f1c212230047a)
1998-03-14updated to give instructions on running via cgi-binAndrew Tridgell1-7/+48
(This used to be commit 23a8588765af24544433fedeeb927a4f68cb1263)
1998-03-14another fix for running under cgi-binAndrew Tridgell1-2/+2
(This used to be commit 6e2248532a063a83b682c967a65377488810f9eb)
1998-03-14fixed support for running swat via cgi-binAndrew Tridgell2-10/+50
(This used to be commit 9dbfb16990954ee3518ce3bc73e067c82b653930)
1998-03-14removed a redundent return statementAndrew Tridgell2-17/+22
(This used to be commit 24e1539cd06a630334135f957720ed030ec4e894)
1998-03-14fixed instructions in installswat.sh (thanks to Herb again!)Andrew Tridgell1-1/+1
(This used to be commit 5e25c845c7c9fe3330cd84e84cfc9b08d77d8cc3)
1998-03-14remove an unnecessary #ifdefAndrew Tridgell1-2/+0
(This used to be commit dfaa576d7e661b772daae602152239d8a1adce88)
1998-03-12Fixed typos. Anyone else like to vet this?John Terpstra1-6/+7
(This used to be commit 49e025d557bc2b2a3a8e9a33d6736ca3972287b0)
1998-03-12a brief description of how to install and run SWATAndrew Tridgell1-0/+85
(This used to be commit 349500965c7e10cb073e50fe4d4b2abc19a3df18)
1998-03-12added an install target for SWATAndrew Tridgell1-0/+41
(This used to be commit 1a87b2c2b61b3785b6a6597b220fec611c5872e6)
1998-03-12some initial help and images files for swatAndrew Tridgell7-0/+3376
(This used to be commit d2376416d6350b22550ab56a590afd06d7c4d9bf)
1998-03-12moved cgi.c and swat.c into a source/web/ directory. Note that youAndrew Tridgell2-1226/+0
won't see a cvs add in the web directory or these files as I added them by directly copying in the repository. This keeps the history of the files intact. (This used to be commit abe0379cf99f63116ea6f61337134ad5c228f933)
1998-03-12move setup_groups() into password.c so that swat can link withoutAndrew Tridgell2-83/+86
including server.o (This used to be commit 67bb8835c76e3efc43de55493971fe2402c0d709)
1998-03-12use password_ok() instead of calling crypt()Andrew Tridgell2-22/+4
(This used to be commit 53dc8ea5e315abf9ee8d38ffdb8a3057df0235be)
1998-03-12add swat to .cvsignoreAndrew Tridgell1-2/+10
(This used to be commit e826790666a7fb4a39ecdbc8c8084d484a011a62)
1998-03-12these have been replaced by swatAndrew Tridgell2-331/+0
(This used to be commit f9ce87f8658920bd73ed9968723bd5c65a07b8b2)
1998-03-12add FLAG_HIDE to "config file" option (so it can't be set in swat)Andrew Tridgell1-1/+1
(This used to be commit f9f9fe67c7570f7585099a14c36bb3ff0291cdf4)
1998-03-12use FSTYPE_STRING not "SAMBA" for filesystem typeAndrew Tridgell1-1/+1
(This used to be commit df62c80e1d04059905b8a3c5bf9073ba91331e99)
1998-03-12report the max size of raw reads as 65536 not 65535 (this now matchesAndrew Tridgell1-1/+1
what Win95 reports) (This used to be commit a4c6884f43233d57a5f6465f67c4657dd061ae43)
1998-03-11Missed fixes in NTDOM branch for doing readX via pipe IPC$.Jeremy Allison2-1/+5
Allows long share lists to be browsed. Browsing *into* a long share name still fails, though. (Luke - you may need to look into this). Jeremy. (This used to be commit 5299d1b49f2bfd6cf84a687548904206f4a18a41)
1998-03-11"For I have laboured mightily on Luke's code, and hath brokenJeremy Allison56-2626/+22969
all I saw" - the book of Jeremy, chapter 1 :-). So here is the mega-merge of the NTDOM branch server code. It doesn't include the new client side pieces, we'll look at that later. This should give the same functionality, server wise, as the NTDOM branch does, only merged into the main branch. Any fixes to domain controler functionality should be added to the main branch, not the NTDOM branch. This code compiles without warnings on gcc2.8, but will need further testing before we are sure all the working functionality of the NTDOM server branch has been correctly carried over. I hereby declare the server side of the NTDOM branch dead (and all who sail in her :-). Jeremy. (This used to be commit 118ba4d77a33248e762a2cf843fb7cbc906ee6e7)
1998-03-11fix core dumps on Solaris 2.5 systems found by Orn AsgeirssonHerb Lewis1-6/+12
(This used to be commit bafc7768925109d0e8e87152054d37ec3f4e7fdd)