~ubuntu-branches/ubuntu/precise/ceph/precise

« back to all changes in this revision

Viewing changes to src/mon/MonCaps.h

  • Committer: Bazaar Package Importer
  • Author(s): Clint Byrum, Clint Byrum, Micah Gersten
  • Date: 2011-02-12 22:50:26 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110212225026-yyyw4tk0msgql3ul
Tags: 0.24.2-0ubuntu1
[ Clint Byrum <clint@ubuntu.com> ]
* New upstream release. (LP: #658670, LP: #684011)
* debian/patches/fix-mkcephfs.patch: dropped (applied upstream)
* Removed .la files from libceph1-dev, libcrush1-dev and 
  librados1-dev (per Debian policy v3.9.1 10.2).
* debian/control: adding pkg-config as a build dependency
* debian/control: depend on libcrypto++-dev instead of libssl-dev
* debian/watch: added watch file

[ Micah Gersten <micahg@ubuntu.com> ]
* debian/control: add Homepage

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
              allow_all(false), auid(CEPH_AUTH_UID_DEFAULT) {}
74
74
  const string& get_str() const { return text; }
75
75
  bool parse(bufferlist::iterator& iter);
76
 
  rwx_t get_caps(int service);
 
76
  rwx_t get_caps(int service) const;
77
77
  bool check_privileges(int service, int req_perm,
78
78
                        uint64_t auid=CEPH_AUTH_UID_DEFAULT);
79
79
  void set_allow_all(bool allow) { allow_all = allow; }