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

« back to all changes in this revision

Viewing changes to src/messages/MMonCommand.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:
22
22
 
23
23
class MMonCommand : public PaxosServiceMessage {
24
24
 public:
25
 
  ceph_fsid_t fsid;
 
25
  uuid_d fsid;
26
26
  vector<string> cmd;
27
27
 
28
28
  MMonCommand() : PaxosServiceMessage(MSG_MON_COMMAND, 0) {}
29
 
  MMonCommand(ceph_fsid_t &f, version_t v) : 
 
29
  MMonCommand(uuid_d &f, version_t v) : 
30
30
    PaxosServiceMessage(MSG_MON_COMMAND, v),
31
31
    fsid(f) { }
32
32