~ubuntu-branches/ubuntu/trusty/mongodb/trusty-proposed

« back to all changes in this revision

Viewing changes to db/security.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Antonin Kral
  • Date: 2010-01-29 19:48:45 UTC
  • Revision ID: james.westby@ubuntu.com-20100129194845-8wbmkf626fwcavc9
Tags: upstream-1.3.1
ImportĀ upstreamĀ versionĀ 1.3.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// security.cpp
 
2
 
 
3
/**
 
4
 *    Copyright (C) 2009 10gen Inc.
 
5
 *
 
6
 *    This program is free software: you can redistribute it and/or  modify
 
7
 *    it under the terms of the GNU Affero General Public License, version 3,
 
8
 *    as published by the Free Software Foundation.
 
9
 *
 
10
 *    This program is distributed in the hope that it will be useful,
 
11
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 *    GNU Affero General Public License for more details.
 
14
 *
 
15
 *    You should have received a copy of the GNU Affero General Public License
 
16
 *    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
 */
 
18
 
 
19
#include "stdafx.h"
 
20
#include "security.h"
 
21
#include "instance.h"
 
22
#include "client.h"
 
23
#include "curop.h"
 
24
 
 
25
namespace mongo {
 
26
 
 
27
    bool noauth = true;
 
28
 
 
29
        int AuthenticationInfo::warned = 0;
 
30
 
 
31
} // namespace mongo
 
32