Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-02-23 | More warning fixes for Solaris. | Jeremy Allison | 1 | -7/+7 | |
Jeremy. | |||||
2009-02-13 | Replace get_myname() with the talloc version from v3-3-test | Volker Lendecke | 1 | -1/+1 | |
2009-02-04 | Have nmbd check all available interfaces for WINS before failing | Aravind Srinivasan | 2 | -2/+4 | |
When nmbd is acting as WINS, it picks the first interface's IP as WINS server's IP. If the first interface's IP is zero, we will just quit (even though we might have other interfaces with valid IPs). This patch makes nmbd look at all interfaces and pick the first interface with a valid IP as the WINS server's IP. | |||||
2009-01-30 | Make cli_tcon_andx async | Volker Lendecke | 1 | -1/+1 | |
2009-01-27 | s3:nmbd: handle SIG_TERM and SIGHUP via tevent | Stefan Metzmacher | 1 | -48/+67 | |
metze | |||||
2009-01-27 | s3:nmbd: as the sig_term() handler only sets a flag we don't need to block ↵ | Stefan Metzmacher | 3 | -23/+0 | |
SIGTERM The arguments of commit d98bea900ee694cdba83149620c65bd7f8765f26 are no longer valid. metze | |||||
2009-01-27 | s3:nmbd: install the SIG_DFL handler for SIGTERM while we're waiting for ↵ | Stefan Metzmacher | 1 | -12/+4 | |
interfaces We should handle all 3 cases where we actively wait for interfaces in the same way. metze | |||||
2009-01-22 | s3:nmbd: we don't need to call message_dispatch() anymore it's event ↵ | Stefan Metzmacher | 1 | -4/+0 | |
triggered now metze | |||||
2009-01-22 | s3: always call run_events() before and after sys_select() | Stefan Metzmacher | 1 | -9/+7 | |
And always setup the fd events. metze | |||||
2009-01-21 | Memory leaks and other fixes found by Coverity | todd stecher | 2 | -3/+3 | |
2009-01-16 | s3:put the browse list into cache_dir, not lock_dir. | Michael Adam | 1 | -8/+1 | |
Michael | |||||
2009-01-16 | s3:nmbd: don't leak state_path() to talloc_tos() in wins_write_database() | Michael Adam | 1 | -1/+1 | |
Michael | |||||
2009-01-15 | s3: make better use of ccache by not including version.h in every C-file. | Michael Adam | 1 | -1/+1 | |
version.h changes rather frequently. Since it is included via includes.h, this means each C file will be a cache miss. This applies to the following situations: * When building a new package with a new Samba version * building in a git branch after calling mkversion.sh after a new commit (i.e. virtually always) This patch improves the situation in the following way: * remove inlude "version.h" from includes.h * Use samba_version_string() instead of SAMBA_VERSION_STRING in files that use no other macro from version.h instead of SAMBA_VERSION_STRING. * explicitly include "version.h" in those files that use more macros from "version.h" than just SAMBA_VERSION_STRING. Michael | |||||
2009-01-14 | Remove smbclient globals that bled into clidfs.c. Now we only have | Jeremy Allison | 1 | -4/+1 | |
the connections list and authentication structures to worry about. Jeremy | |||||
2009-01-12 | Covert several persistant tdb files to use state_path() instead of lock_path() | Steven Danneman | 1 | -1/+1 | |
2009-01-12 | Audit usage of get_dyn_STATEDIR() and replace with state_path() | Steven Danneman | 1 | -2/+2 | |
The state directory is now run-time configurable through loadparm, so all references to it should be done through state_path() or lp_statedir(). | |||||
2009-01-05 | s3:events: change event_add_timed() prototype to match samba4 | Stefan Metzmacher | 1 | -2/+1 | |
metze | |||||
2009-01-05 | clean event context after child is forked. | Bo Yang | 2 | -2/+4 | |
Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2008-12-19 | Make cli_negprot return NTSTATUS instead of bool | Volker Lendecke | 1 | -1/+2 | |
2008-11-03 | s3: fix a few "shadows a global declaration" warnings | Tim Prouty | 1 | -4/+4 | |
2008-10-23 | Use common net utility code (address and sockaddr manipulation). | Jelmer Vernooij | 3 | -11/+12 | |
2008-10-23 | Use sockaddr_storage only where we rely on the size, use sockaddr | Jelmer Vernooij | 4 | -5/+5 | |
otherwise (to clarify we can also pass in structs smaller than sockaddr_storage, such as sockaddr_in). | |||||
2008-10-18 | Use separate make variables for libutil and libcrypto. | Jelmer Vernooij | 2 | -3/+3 | |
2008-10-14 | Use {u,}int64_t instead of SMB_BIG_{U,}INT. | Jelmer Vernooij | 1 | -3/+3 | |
2008-09-25 | s3-nbt: remove double nbt netlogon opcodes. | Günther Deschner | 1 | -15/+15 | |
Guenther | |||||
2008-08-20 | fix build warning. | Günther Deschner | 1 | -1/+1 | |
Guenther (This used to be commit a75055be5ff7ebe3476cfac86c6597a56a843c23) | |||||
2008-08-19 | Fix bug 5697 nmbd spins in reload_interfaces when only loopback has an IPv4 ↵ | Jeremy Allison | 2 | -7/+8 | |
address reported by Ted Percival <ted@midg3t.net>. Jeremy. (This used to be commit ab06efccf31fbc899536d2681a2076e6dfd65b9e) | |||||
2008-08-13 | first cut at adding full transactions for ctdb to samba3 | Andrew Tridgell | 1 | -4/+0 | |
(This used to be commit f91a3e0f7b7737c1d0667cd961ea950e2b93e592) | |||||
2008-08-09 | nmbd: add support for delayed initial samlogon packages. | Michael Adam | 1 | -6/+86 | |
The hosts or networks configured with "init logon delayed hosts" have their initial samlogon packages (empty username) delayed by the value configured with "init logon delay" (defaulting to 100 milliseconds). This gives the administrator some control over what clients would consider the preferred logon server: they choose the server that repsonds most quickly. Michael (This used to be commit d52b9beede1fb14e1d7e3acd9765d6cd14dfcc3d) | |||||
2008-08-09 | nmbd_packets: make queue_packet() public. | Michael Adam | 1 | -3/+1 | |
Michael (This used to be commit 363eb90ce8380ce1bbc74673936ba1e6d7eee23b) | |||||
2008-06-26 | nmbd: untangle logic in nmbd_messaging_context() slightly. | Michael Adam | 1 | -2/+5 | |
Michael (This used to be commit 3baf9eb6a2cc6a4a153303b457d3a7067948495e) | |||||
2008-06-26 | nmbd: don't panic if messaging_init() fails - return NULL instead. | Michael Adam | 1 | -1/+1 | |
Michael (This used to be commit e6a403209c29bd2ec2242d654ad45276de02cb44) | |||||
2008-04-23 | Fix CLEAR_IF_FIRST handling of messages.tdb | Volker Lendecke | 2 | -2/+2 | |
We now open messages.tdb even before we do the become_daemon. become_daemon() involves a fork and an immediate exit of the parent, thus the parent_is_longlived argument must be set to false in this case. The parent is not really long lived :-) (This used to be commit 4f4781c6d17fe2db34dd5945fec52a7685448aec) | |||||
2008-04-21 | cldap: avoid duplicate definitions so remove ads_cldap.h. | Günther Deschner | 1 | -2/+2 | |
Guenther (This used to be commit 538eefe22ad69540b9f73ffaa613d6be045de199) | |||||
2008-04-18 | nmbd: create the messaging conntext earlier | Stefan Metzmacher | 1 | -3/+12 | |
metze (This used to be commit 056ff094ad2c59992cfdb8b29696c08dab4113d7) | |||||
2008-04-18 | nmbd: call reinit_after_fork() in all needed cases | Stefan Metzmacher | 2 | -0/+10 | |
metze (This used to be commit f68829ff14c457bfa98cb2ef9e8ec2e1a0b1d64d) | |||||
2008-04-12 | dbwrap: wait for tdb2 change notifies in smbd, nmbd and winbindd | Stefan Metzmacher | 1 | -0/+8 | |
metze (This used to be commit 64450cc1e441355aa8925b7183e90872eeab20b1) | |||||
2008-04-11 | Fix bug #5386, don't keep printing the same waiting | Jeremy Allison | 1 | -3/+6 | |
error message. Jeremy. (This used to be commit 12e6818df1c77810a59a2896f8c44c91fc24e7ae) | |||||
2008-04-10 | Fix the last reported debian problem with nmbd not waiting | Jeremy Allison | 1 | -10/+22 | |
until interfaces come up. Jeremy. (This used to be commit 59a2f0873c789822d46f862042921a8ba8f2bd28) | |||||
2008-03-27 | Fix for termination problems when no interfaces found - bug #5267. | Jeremy Allison | 1 | -6/+15 | |
Jeremy. (This used to be commit 4b03f4eb2da7a523967ace3d13e79406ade07d47) | |||||
2008-03-06 | Fix bug #5267 - nmbd shuts down when network interfaces go down. | Jeremy Allison | 1 | -29/+39 | |
Cause nmbd to wait for an interface, in a mode where SIGTERM will kills us (same way we wait on startup for an interface). Jeremy. (This used to be commit 5440c752ff270cc674d46f2dfa2ceb47dac030f6) | |||||
2008-02-29 | Patch to fix the "Invalid read of size 4" errors. Bug #3617. | Jeremy Allison | 1 | -0/+18 | |
Jeremy. (This used to be commit fa12667ec284fdda45b79cbf6bf548ab0faae34f) | |||||
2008-02-29 | Fix part of bug #3617 from valgrind trace. | Jeremy Allison | 2 | -3/+4 | |
"Invalid read of size 1" errors. Jeremy. (This used to be commit d954a4954ba8ed6cb2c6074176a6008cfa398dd7) | |||||
2008-02-02 | Convert read_data() to NTSTATUS | Volker Lendecke | 1 | -7/+12 | |
(This used to be commit af40b71023f8c4a2133d996ea698c72b97624043) | |||||
2008-01-24 | Fix Coverity ID 454 | Volker Lendecke | 1 | -1/+8 | |
(This used to be commit 902d1d6709e47fbc8b538f28cb4364b006c431f8) | |||||
2008-01-24 | Fix Coverity ID 465 | Volker Lendecke | 1 | -0/+2 | |
(This used to be commit 8629a0e1c3da7c2d2b0c1d99224177c54bbae930) | |||||
2008-01-23 | strtok -> strtok_r | Volker Lendecke | 1 | -1/+2 | |
(This used to be commit fd34ce437057bb34cdc37f4b066e424000d36789) | |||||
2008-01-11 | Fix CID 475. work should not be checked against NULL | Jeremy Allison | 1 | -2/+2 | |
here as it can never be null. Jeremy. (This used to be commit ecb52f50fe3ec8beda48b6c88e9a3ae5a6a98d52) | |||||
2008-01-09 | Ensure we don't take address of one past buffer. | Jeremy Allison | 1 | -1/+1 | |
Jeremy. (This used to be commit 318cbcfae51fc5dae549c60107d12480d8e478c8) | |||||
2008-01-04 | More logical operation on bool. | Jeremy Allison | 1 | -1/+3 | |
Jeremy. (This used to be commit 7e8e91aeb3795d26ae8591665981bc42d8b6122f) |