]> git.proxmox.com Git - ceph.git/blame - ceph/src/rgw/radosgw.cc
import ceph 15.2.10
[ceph.git] / ceph / src / rgw / radosgw.cc
CommitLineData
9f95a23c
TL
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
5extern int radosgw_Main(int, const char **);
6
7/*
8 * start up the RADOS connection and then handle HTTP messages as they come in
9 */
10int main(int argc, char **argv)
11{
12 return radosgw_Main(argc, const_cast<const char **>(argv));
13}