~ubuntu-branches/ubuntu/raring/ceph/raring

« back to all changes in this revision

Viewing changes to src/mon/MonClient.h

  • Committer: Package Import Robot
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2012-02-05 10:07:38 UTC
  • mfrom: (1.1.7) (0.1.11 sid)
  • Revision ID: package-import@ubuntu.com-20120205100738-00s0bxx93mamy8tk
Tags: 0.41-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
class MAuthReply;
39
39
class MAuthRotating;
40
40
class LogClient;
 
41
class AuthSupported;
41
42
 
42
43
enum MonClientState {
43
44
  MC_STATE_NONE,
68
69
 
69
70
  LogClient *log_client;
70
71
 
71
 
  set<__u32> auth_supported;
 
72
  AuthSupported *auth_supported;
72
73
 
73
74
  bool ms_dispatch(Message *m);
74
75
  bool ms_handle_reset(Connection *con);
199
200
    return my_addr;
200
201
  }
201
202
 
202
 
  const ceph_fsid_t& get_fsid() {
 
203
  const uuid_d& get_fsid() {
203
204
    return monmap.fsid;
204
205
  }
205
206