summaryrefslogtreecommitdiffstats
path: root/source/web/startstop.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove the char[1024] strings from dynconfig. ReplaceJeremy Allison2007-12-101-3/+3
| | | | | | them with malloc'ing accessor functions. Should save a lot of static space :-). Jeremy.
* Make strhex_to_str clear on string limits. Remove pstring from web/*.cJeremy Allison2007-12-031-24/+24
| | | | Jeremy.
* r23784: use the GPLv3 boilerplate as recommended by the FSF and the license textAndrew Tridgell2007-10-101-2/+1
|
* r23779: Change from v2 or later to v3 or later.Jeremy Allison2007-10-101-1/+1
| | | | Jeremy.
* r22736: Start to merge the low-hanging fruit from the now 7000-line cluster ↵Volker Lendecke2007-10-101-1/+1
| | | | | | | | | patch. This changes "struct process_id" to "struct server_id", keeping both is just too much hassle. No functional change (I hope ;-)) Volker
* r14618: add --no-process-group to all server programmsStefan Metzmacher2007-10-101-3/+3
| | | | | | | | | | | to make the following possible: timelimit 20000 bin/nmbd -F -S --no-process-group timelimit 20000 bin/smbd -F -S --no-process-group this is needed to 'make test' working without losing child processes metze
* r10656: BIG merge from trunk. Features not copied overGerald Carter2007-10-101-3/+3
| | | | | | | * \PIPE\unixinfo * winbindd's {group,alias}membership new functions * winbindd's lookupsids() functionality * swat (trunk changes to be reverted as per discussion with Deryck)
* r2835: Since we always have -I. and -I$(srcdir) in CFLAGS, we can get rid ofTim Potter2007-10-101-1/+1
| | | | | '..' from all #include preprocessor commands. This fixes bugzilla #1880 where OpenVMS gets confused about the '.' characters.
* Added patch from Stephen Roylance.John Terpstra2003-04-241-6/+0
|
* patch to include support for daemontools from Michael HandlerGerald Carter2003-01-031-3/+3
|
* sync 3.0 branch with HEADJelmer Vernooij2002-08-171-0/+33
|
* updated the 3.0 branch from the head branch - ready for alpha18Andrew Tridgell2002-07-151-1/+1
|
* Add assertions that kill() is never accidentally passed a non-positiveMartin Pool2002-03-201-2/+2
| | | | | | | | | pid. This follows a bug in rsync where it would accidentally kill(-1), removing all the user's processes. I can't see any way this would directly happen in Samba, but having the assertions seems beneficial. http://cvs.samba.org/cgi-bin/cvsweb/rsync/util.c.diff?r1=1.108&r2=1.109&f=h
* Removed version number from file header.Tim Potter2002-01-301-2/+1
| | | | Changed "SMB/Netbios" to "SMB/CIFS" in file header.
* Store some path names in global variables initialized to configureMartin Pool2001-11-191-4/+5
| | | | default, rather than in preprocessor macros.
* first pass at updating head branch to be to be the same as the SAMBA_2_0 branchAndrew Tridgell1999-12-131-2/+2
|
* wrong directory path for smbd and nmbdHerb Lewis1998-11-201-2/+2
|
* Changes to test in configure if capabilities are enabled on a system.Jeremy Allison1998-09-281-3/+3
| | | | | | | | | | Changes to get Samba to compile cleanly with the IRIX compiler with the options : -fullwarn -woff 1209,1174 (the -woff options are to turn off warnings about unused function parameters and controlling loop expressions being constants). Split prototype generation as we hit a limit in IRIX nawk. Removed "." code in smbd/filename.c (yet again :-). Jeremy.
* This is a security audit change of the main source.Jeremy Allison1998-05-121-2/+2
| | | | | | | | | | | | | | | | | | It removed all ocurrences of the following functions : sprintf strcpy strcat The replacements are slprintf, safe_strcpy and safe_strcat. It should not be possible to use code in Samba that uses sprintf, strcpy or strcat, only the safe_equivalents. Once Andrew has fixed the slprintf implementation then this code will be moved back to the 1.9.18 code stream. Jeremy.
* show full path in ps by setting it in argv[0]Andrew Tridgell1998-03-171-2/+2
|
* fixed call to execl() to get argv[0] right (thanks to Herb)Andrew Tridgell1998-03-171-2/+2
|
* - added the ability to kill off individual connections from SWAT (fromAndrew Tridgell1998-03-151-0/+11
| | | | | | | | | 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
* new files to support starting/stopping the serverAndrew Tridgell1998-03-141-0/+93