~ubuntu-branches/ubuntu/quantal/ceph/quantal

« back to all changes in this revision

Viewing changes to src/rgw/rgw_op.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:
74
74
 
75
75
  virtual void init(struct req_state *s) {
76
76
    RGWOp::init(s);
 
77
    range_str = NULL;
 
78
    if_mod = NULL;
 
79
    if_unmod = NULL;
 
80
    if_match = NULL;
 
81
    if_nomatch = NULL;
77
82
    ofs = 0;
78
83
    len = 0;
79
84
    total_len = 0;
80
85
    end = -1;
 
86
    mod_time = 0;
 
87
    lastmod = 0;
 
88
    unmod_time = 0;
81
89
    mod_ptr = NULL;
82
90
    unmod_ptr = NULL;
 
91
    attrs.clear();
83
92
    data = NULL;
 
93
    ret = 0;
 
94
 
 
95
    /* get_data should not be initialized here! */
84
96
  }
85
97
  void set_get_data(bool get_data) {
86
98
    this->get_data = get_data;
99
111
public:
100
112
  virtual void init(struct req_state *s) {
101
113
    RGWOp::init(s);
 
114
    buckets.clear();
102
115
  }
103
116
  RGWListBuckets() {}
104
117
  ~RGWListBuckets() {}