diff options
Diffstat (limited to '')
-rw-r--r-- | src/rgw/radosgw.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/rgw/radosgw.cc b/src/rgw/radosgw.cc new file mode 100644 index 000000000..df9e935ed --- /dev/null +++ b/src/rgw/radosgw.cc @@ -0,0 +1,13 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab ft=cpp +// + +extern int radosgw_Main(int, const char **); + +/* + * start up the RADOS connection and then handle HTTP messages as they come in + */ +int main(int argc, char **argv) +{ + return radosgw_Main(argc, const_cast<const char **>(argv)); +} |