| 1 | /*
|
|---|
| 2 | Unix SMB/CIFS implementation.
|
|---|
| 3 | Authenticate against a remote domain
|
|---|
| 4 | Copyright (C) Andrew Tridgell 1992-2002
|
|---|
| 5 | Copyright (C) Andrew Bartlett 2002
|
|---|
| 6 |
|
|---|
| 7 | This program is free software; you can redistribute it and/or modify
|
|---|
| 8 | it under the terms of the GNU General Public License as published by
|
|---|
| 9 | the Free Software Foundation; either version 3 of the License, or
|
|---|
| 10 | (at your option) any later version.
|
|---|
| 11 |
|
|---|
| 12 | This program is distributed in the hope that it will be useful,
|
|---|
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 15 | GNU General Public License for more details.
|
|---|
| 16 |
|
|---|
| 17 | You should have received a copy of the GNU General Public License
|
|---|
| 18 | along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|---|
| 19 | */
|
|---|
| 20 |
|
|---|
| 21 | #include "includes.h"
|
|---|
| 22 |
|
|---|
| 23 | /* For reasons known only to MS, many of their NT/Win2k versions
|
|---|
| 24 | need serialised access only. Two connections at the same time
|
|---|
| 25 | may (in certain situations) cause connections to be reset,
|
|---|
| 26 | or access to be denied.
|
|---|
| 27 |
|
|---|
| 28 | This locking allows smbd's mutlithread architecture to look
|
|---|
| 29 | like the single-connection that NT makes. */
|
|---|
| 30 |
|
|---|
| 31 | struct named_mutex {
|
|---|
| 32 | struct tdb_wrap *tdb;
|
|---|
| 33 | char *name;
|
|---|
| 34 | };
|
|---|
| 35 |
|
|---|
| 36 | static int unlock_named_mutex(struct named_mutex *mutex)
|
|---|
|
|---|