Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Don't use CLEAR_IF_FIRST if opening read-only. | Jeremy Allison | 2001-08-26 | 1 | -1/+1 | |
| | | | | Jeremy. | |||||
* | bzero is not used (deprecated) as it's a BSDism. | Jeremy Allison | 2001-08-26 | 1 | -62/+52 | |
| | | | | | | Syscalls must check for -1, not < 0 (POSIX). Formating (tab) fixups. Jeremy. | |||||
* | Change default 'name resolve order' to WINS before DNS. | Volker Lendecke | 2001-08-26 | 2 | -2/+2 | |
| | | | | Volker | |||||
* | Same as nmbd.c. These now test wins_srv_count() instead of lp_wins_server | Christopher R. Hertel | 2001-08-26 | 3 | -3/+3 | |
| | | | | to determine whether the 'wins server' parameter is set. | |||||
* | Instead of checking lp_wins_server() to see if a WINS server was specified, | Christopher R. Hertel | 2001-08-26 | 1 | -5/+8 | |
| | | | | | | | | nmbd now calls wins_srv_count(). This returns the number of WINS servers specified in the 'wins server' parameter. The return value will be zero if 'wins server' is not specified. Quick change to make room for WINS failover. | |||||
* | Small changes to get ready for adding WINS failover to smbd and clients. | Christopher R. Hertel | 2001-08-26 | 1 | -5/+76 | |
| | | | | | | | | | | | | My plan is to change the lp_wins_server() function to lp_wins_server_list(). My reason being: With WINS failover the 'wins server' parameter may take a list of WINS server names/IPs instead of just one. If it's a list, then calling lp_wins_server() won't give you what you expect (that is, a single WINS server name or IP). Instead, the functions in wins_srv.c should be used. You can get either the name or IP of the 'current' working WINS server in the list. Chris -)----- | |||||
* | fixed typo | Gerald Carter | 2001-08-26 | 2 | -2/+2 | |
| | ||||||
* | Fussing with debug lines in open_socket_in(). I cleaned up some slightly | Christopher R. Hertel | 2001-08-26 | 1 | -32/+56 | |
| | | | | | | | | funky code that was simply setting a local int to 0 or 1 and also added calls to strerror() in some of the debug lines. The use of the dlevel parameter in this function is a little awkward. There should probably be some comments about it in the source. | |||||
* | we now have all but the dreaded 0/0 lock working | Andrew Tridgell | 2001-08-24 | 1 | -30/+67 | |
| | ||||||
* | typo | Gerald Carter | 2001-08-24 | 2 | -731/+733 | |
| | ||||||
* | get rid of compiler warnings | Herb Lewis | 2001-08-24 | 16 | -41/+42 | |
| | ||||||
* | More status32 conversions. | Tim Potter | 2001-08-24 | 2 | -15/+14 | |
| | ||||||
* | Re-added readbraw call to test with smbtorture. This code not yet | Jeremy Allison | 2001-08-24 | 1 | -1/+88 | |
| | | | | | tested... Jeremy. | |||||
* | fixed level2 find first for unisys clients | Andrew Tridgell | 2001-08-24 | 1 | -0/+1 | |
| | ||||||
* | fixed handling of 139/445 in clients | Andrew Tridgell | 2001-08-24 | 9 | -24/+12 | |
| | ||||||
* | /tmp/cvsVTEaY5 | Gerald Carter | 2001-08-24 | 2 | -919/+815 | |
| | ||||||
* | Fixed debug in cli_establish_connection() - print out the called name on | Tim Potter | 2001-08-24 | 1 | -1/+1 | |
| | | | | connection failure rather than the calling name. | |||||
* | tests for 0 length locks | Andrew Tridgell | 2001-08-24 | 1 | -15/+28 | |
| | ||||||
* | Process the SAM/UAS change notification message. | Tim Potter | 2001-08-24 | 2 | -1/+74 | |
| | ||||||
* | Only register the #1b name if we are ROLE_DOMAIN_PDC rather than | Tim Potter | 2001-08-24 | 1 | -1/+1 | |
| | | | | lp_domain_master() | |||||
* | fixes big endian unistring problems. Need to check that it didn't | Herb Lewis | 2001-08-24 | 1 | -2/+9 | |
| | | | | break little-endian machines. | |||||
* | Make domain_client_validate return a status code instead of a boolean. | Tim Potter | 2001-08-24 | 2 | -19/+23 | |
| | ||||||
* | Fixed incorrect debug. | Tim Potter | 2001-08-24 | 2 | -8/+2 | |
| | ||||||
* | Fixed typo in debug message. | Tim Potter | 2001-08-24 | 1 | -1/+1 | |
| | ||||||
* | add a comment to make the code more readable | Simo Sorce | 2001-08-24 | 1 | -1/+1 | |
| | ||||||
* | Set secure channel type depending on server role. | Tim Potter | 2001-08-24 | 1 | -1/+2 | |
| | ||||||
* | fix missing ) | Herb Lewis | 2001-08-24 | 1 | -1/+1 | |
| | ||||||
* | let admins also abort a shutdown | Simo Sorce | 2001-08-24 | 3 | -10/+56 | |
| | ||||||
* | Fixed malloc -> talloc problems pointed out by Simo. | Jeremy Allison | 2001-08-24 | 2 | -8/+8 | |
| | | | | Jeremy | |||||
* | allow for 0 range locks in locktest | Andrew Tridgell | 2001-08-24 | 1 | -1/+1 | |
| | ||||||
* | flush on a invalid fsp should give an error | Andrew Tridgell | 2001-08-24 | 1 | -16/+16 | |
| | ||||||
* | 0 byte lock ranges ARE valid | Andrew Tridgell | 2001-08-24 | 1 | -6/+3 | |
| | ||||||
* | fixed shortname length in trans2 list | Andrew Tridgell | 2001-08-24 | 1 | -1/+2 | |
| | ||||||
* | get rid of old debug code and possible socket leak | Herb Lewis | 2001-08-24 | 1 | -9/+1 | |
| | ||||||
* | Fix W2K profiles writing to a Samba PDC. Thanks to Microsoft for their help ! | Jeremy Allison | 2001-08-23 | 1 | -15/+6 | |
| | | | | Jeremy. | |||||
* | so let admins shutdown their samba servers remotely if they want :-) | Simo Sorce | 2001-08-23 | 3 | -0/+76 | |
| | ||||||
* | more minor torture updates | Andrew Tridgell | 2001-08-23 | 2 | -4/+15 | |
| | ||||||
* | use 32 bit locking if client doesn't do 64 bit | Andrew Tridgell | 2001-08-23 | 1 | -0/+8 | |
| | ||||||
* | Some W2k info. | Jeremy Allison | 2001-08-23 | 1 | -0/+41 | |
| | | | | Jeremy. | |||||
* | merge from 2.2 | Gerald Carter | 2001-08-23 | 1 | -3/+14 | |
| | ||||||
* | Fix to only send the status32 error for status32 clients, not to other | Andrew Bartlett | 2001-08-23 | 1 | -3/+1 | |
| | | | | nt_smb clients. As spotted by Thursby. | |||||
* | Fixed detection of CUPS. We need to check for the presence of the cups | Tim Potter | 2001-08-23 | 9 | -573/+643 | |
| | | | | header files as well as libcups. | |||||
* | Fix up some unused variables and functions, fix up formatting | Andrew Bartlett | 2001-08-23 | 4 | -18/+0 | |
| | ||||||
* | compile fix | Simo Sorce | 2001-08-23 | 1 | -1/+1 | |
| | ||||||
* | Fix for filers sending -1 for the maximum read request length on the | Tim Potter | 2001-08-23 | 1 | -3/+7 | |
| | | | | LSA pipe. | |||||
* | better error reporting for servers that don't do port 445 | Andrew Tridgell | 2001-08-23 | 2 | -2/+5 | |
| | ||||||
* | the beginnings of a TRANS2 scanner | Andrew Tridgell | 2001-08-23 | 1 | -0/+66 | |
| | ||||||
* | Added copyright for me and AB. | Tim Potter | 2001-08-23 | 1 | -0/+2 | |
| | ||||||
* | added port 445 support to our client code | Andrew Tridgell | 2001-08-22 | 1 | -5/+19 | |
| | ||||||
* | A few changes: | Andrew Bartlett | 2001-08-22 | 8 | -111/+105 | |
| | | | | | | | | | | | | drop paramaters: status utmp hostname change session code to always record each vuid current on the server. The sessionid struct is no longer packed, as I couldn't get that to work ;-) change smbstatus to show this info and less of the connections.tdb info (its not actualy that accurate). I'll get swat doing some of this shortly. |