summaryrefslogtreecommitdiffstats
path: root/source
Commit message (Collapse)AuthorAgeFilesLines
...
* | Const cleanup...should only be 2 warnings left from calling lib/util_str.cJim McDonough2002-06-281-117/+158
| | | | | | | | str_list_copy(). Perhaps its proto should be fixed.
* | STRING was being redefined...Jeremy Allison2002-06-281-1/+0
| | | | | | | | Jeremy.
* | don't backup to a newer fileAndrew Tridgell2002-06-281-1/+17
| |
* | make net join a bit less verboseAndrew Tridgell2002-06-283-3/+3
| | | | | | | | these errors happen all the time, so they shouldn't be level 0
* | don't warn on non-existant files in map_file(), let the caller handle any ↵Andrew Tridgell2002-06-281-1/+2
| | | | | | | | warning
* | don't warn on the loading of zero length files. This fixes theAndrew Tridgell2002-06-281-1/+1
| | | | | | | | 'valid.dat' warning
* | Proper merge of all the working printing stuff from APPLIANCE_HEAD.Jeremy Allison2002-06-2814-1040/+1462
| | | | | | | | | | Now let's keep this in sync ! Jeremy.
* | It's fairly obvious that no one has tried to upload a driverGerald Carter2002-06-272-2/+30
| | | | | | | | | | | | | | | | | | | | to a Samba print server running HEAD in a while. This has been broken since tridge's changes to make_connection() to not do the chdir() to the connect_path. Sorry it took me so long to get around to fixing it. The problem occured with our internal use of make_connection(). jerry
* | fixed a link problem with global_in_nmbdAndrew Tridgell2002-06-272-3/+3
| |
* | The next phase in the WINS rewrite!Andrew Tridgell2002-06-2713-894/+867
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We now cope wiith multiple WINS groups and multiple failover servers for release and refresh as well as registration. We also do the regitrations in the same fashion as W2K does, where we don't try to register the next IP in the list for a name until the WINS server has acked the previos IP. This prevents us flooding the WINS server and also seems to make for much more reliable multi-homed registration. I also changed the dead WINS server code to mark pairs of IPs dead, not individual IPs. The idea is that a WINS server might be dead from the point of view of one of our interfaces, but not another, so we need to keep talking to it on one while moving onto a failover WINS server on the other interface. This copes much better with partial LAN outages and weird routing tables.
* | a null grp_sid should have a 0 offset. Also removed a few more unnecessaryGerald Carter2002-06-272-17/+6
| | | | | | | | prs_align() for sec_desc.
* | Using 1 for a tdb hash size makes for slow inserts....Jeremy Allison2002-06-271-1/+1
| | | | | | | | Jeremy.
* | Re-enable kernel change notification on s390 as it has been fixed in theJim McDonough2002-06-262-2/+2
| | | | | | | | kernel.
* | more merges from SAMBA_2_2Gerald Carter2002-06-263-806/+813
| |
* | merge from APP_HEADGerald Carter2002-06-262-16/+9
| |
* | Typo...Jeremy Allison2002-06-261-1/+1
| | | | | | | | Jeremy.
* | Added prs_align_uint16 for SD aligns.Jeremy Allison2002-06-261-0/+11
| | | | | | | | Jeremy.
* | Reduce compiler warnings.Jim McDonough2002-06-261-28/+36
| |
* | resolve_wins() now needs to be a public functionAndrew Tridgell2002-06-261-2/+2
| |
* | This commit finally gives us multiple wins server groups. We nowAndrew Tridgell2002-06-268-266/+557
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | accept an extended syntax for 'wins server' like this: wins server = group1:192.168.2.10 group2:192.168.3.99 group1:192.168.0.1 The tags before the IPs don't mean anything, they are just a way of grouping IPs together. If you use the old syntax (ie. no ':') then an implicit group name of '*' is used. In general I'd recommend people use interface names for the group names, but it doesn't matter much. When we register in nmbd we try to register all our IPs with each group of WINS servers. We keep trying until all of them are registered with every group, falling back to the failover WINS servers for each group as we go. When we do a WINS lookup we try each of the WINS servers for each group. If a WINS server for a group gives a negative answer then we give up on that group and move to the next group. If it times out then we move to the next failover wins server in the group. In either case, if a WINS server doesn't respond then we mark it dead for 10 minutes, to prevent lengthy waits for dead servers.
* | we never pass any userdata when doing name registrations on theAndrew Tridgell2002-06-261-54/+51
| | | | | | | | | | | | unicast subnet, so remove that parameter. That frees up userdata so I can start using it to indicate which wins server tag we are registering (more about wins 'tags' later ...)
* | removed the wins name registration code from libsmbclientAndrew Tridgell2002-06-262-229/+158
| | | | | | | | | | | | | | | | | | | | | | it is *completely* bogus for our client code to be doing wins registrations. Not only is it slow as hell (think about when a wins server is down) but how the heck is going to answer the queries that will later come in for our name? And what happens when libsmbclient sends registrations and nmbd then gets the WACK response from the wins server? we end up losing our name! Name registration is a job for nmbd, not for clients.
* | made the wins list handling a littler clearerAndrew Tridgell2002-06-261-9/+5
| |
* | mumble ... fix typo ... mumbleAndrew Tridgell2002-06-261-1/+1
| |
* | fixed we_are_multihomed() to cope with dynamic interfaces (ie. don'tAndrew Tridgell2002-06-261-6/+1
| | | | | | | | cache the result!)
* | - completely rewrote the wins_srv.c code. It is now much simpler, andAndrew Tridgell2002-06-266-331/+126
| | | | | | | | | | | | | | | | | | | | | | | | | | | | gives us a good grounding to properly support multiple wins servers for different interfaces (which will be coming soon ...) - fixed our wins registration failover code to actually do failover! We were not trying to register with a secondary wins server at all when the primary was down. We now fallback correctly. - fixed the multi-homed name registration packets so that they work even in a non-connected network (ie. when one of our interfaces is not routable from the wins server. Yes, this really happens in the real world).
* | fixed 3 bugs in jeremys trans2 merge. Hopefully it now works.Andrew Tridgell2002-06-261-8/+4
| |
* | reverted some bogus test code that jeremy accidentally committedAndrew Tridgell2002-06-261-8/+0
| |
* | Another bug fix from metze.Andrew Bartlett2002-06-261-1/+1
| |
* | Qualify some of the hexidecimal responses with 0xAndrew Bartlett2002-06-261-5/+5
| |
* | And fix another missing ubiqx...Andrew Bartlett2002-06-251-1/+1
| | | | | | | | (Didn't have smbmnt compiled in originally, so it missed my tests)
* | Fix the smbmnt compile.Andrew Bartlett2002-06-251-1/+1
| |
* | I'm going to try and check this against Win2k shortly, but I'm certain thatAndrew Bartlett2002-06-251-1/+1
| | | | | | | | | | | | 'NT_STATUS_OK' is not the right answer here. Try NO_MORE_ENTRIES for now. Andrew Bartlett
* | Try to avoid infinite loops when reteriving users - even from broken servers.Andrew Bartlett2002-06-251-1/+4
| | | | | | | | Andrew Bartlett
* | Update cli_full_connection() to take a 'flags' paramater, and try to get aAndrew Bartlett2002-06-2512-158/+67
| | | | | | | | | | | | few more places to use it. Andrew Bartlett
* | And another .cvsignoreAndrew Bartlett2002-06-251-0/+1
| |
* | Add a .cvsignore fileAndrew Bartlett2002-06-251-0/+1
| |
* | Kill off unnecessary cast.Andrew Bartlett2002-06-251-2/+3
| |
* | Break up samba's object dependencies, and its prototype includes.Andrew Bartlett2002-06-2514-183/+268
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now smbclient, net, and swat use their own proto files - now the global proto.h The change to libads/kerberos.c was to break up the dependency on secrets.c - we want to be able to write an ADS client that doesn't need local secrets. I have other breakups in the works - I will remove the dependency of rpc_parse on passdb (and therefore secrets.c) shortly. (NOTE: This patch does *not* break up includes.h, or other such forbidden actions). Andrew Bartlett
* | Add a couple more DEBUG()s to winbindd.Andrew Bartlett2002-06-251-4/+9
| | | | | | | | Andrew Bartlett
* | fixed a bug in handling select in the main daemon - this stops the daemon ↵Andrew Tridgell2002-06-251-12/+6
| | | | | | | | spinning if a signal is received at an inconvenient moment
* | removed compiler warningGerald Carter2002-06-251-1/+1
| |
* | merge of SONAMEFLAG stuff from SAMBA_2_2. If I stepped on somethingGerald Carter2002-06-253-820/+921
| | | | | | | | | | here because HEAD does it differently, someone let me know. This looks ok and compiles fine from what I can tell.
* | merging some autoconf changes from SAMBA_2_2Gerald Carter2002-06-243-1091/+1025
| |
* | sync with the sec_desc parsing fix from APP_HEAD. I will probably needGerald Carter2002-06-241-16/+11
| | | | | | | | to revisit this some.
* | replacing free() with SAFE_FREE() where possibleGerald Carter2002-06-241-8/+8
| |
* | backing out changes for nowGerald Carter2002-06-241-11/+11
| |
* | compile fixGerald Carter2002-06-241-0/+1
| |
* | forgot new error code from 2.2Gerald Carter2002-06-241-0/+1
| |
* | printing merge from SAMBA_2_2. Ther server code looks to be in sync now.Gerald Carter2002-06-246-71/+131
| | | | | | | | | | | | | | | | Mostly formatting and s/free/SAFE_FREE/g changes with the two exceptions being * John driver init changes * Tim's printer enumeration bug fix