]> git.proxmox.com Git - ceph.git/blob - ceph/src/rgw/radosgw.cc
buildsys: change download over to reef release
[ceph.git] / ceph / src / rgw / radosgw.cc
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab ft=cpp
3 //
4
5 extern int radosgw_Main(int, const char **);
6
7 /*
8 * start up the RADOS connection and then handle HTTP messages as they come in
9 */
10 int main(int argc, char **argv)
11 {
12 return radosgw_Main(argc, const_cast<const char **>(argv));
13 }