~clint-fewbar/+junk/ceph-packaging

« back to all changes in this revision

Viewing changes to src/messages/MClientRequestForward.h

  • Committer: Clint Byrum
  • Date: 2010-07-28 22:42:45 UTC
  • Revision ID: clint@ubuntu.com-20100728224245-ucbfty1bryv7iz9h
importing 0.21 native source package contents

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
 */
14
14
 
15
15
 
16
 
#ifndef __MCLIENTREQUESTFORWARD_H
17
 
#define __MCLIENTREQUESTFORWARD_H
 
16
#ifndef CEPH_MCLIENTREQUESTFORWARD_H
 
17
#define CEPH_MCLIENTREQUESTFORWARD_H
18
18
 
19
19
class MClientRequestForward : public Message {
20
20
  int32_t dest_mds;
29
29
    assert(client_must_resend);
30
30
    header.tid = t;
31
31
  }
 
32
private:
 
33
  ~MClientRequestForward() {}
32
34
 
 
35
public:
33
36
  int get_dest_mds() { return dest_mds; }
34
37
  int get_num_fwd() { return num_fwd; }
35
38
  bool must_resend() { return client_must_resend; }