2009-01-25 09:58:40 +00:00
|
|
|
/* <!-- copyright */
|
|
|
|
/*
|
|
|
|
* aria2 - The high speed download utility
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2010-01-05 16:01:46 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2009-01-25 09:58:40 +00:00
|
|
|
*
|
|
|
|
* In addition, as a special exception, the copyright holders give
|
|
|
|
* permission to link the code of portions of this program with the
|
|
|
|
* OpenSSL library under certain conditions as described in each
|
|
|
|
* individual source file, and distribute linked combinations
|
|
|
|
* including the two.
|
|
|
|
* You must obey the GNU General Public License in all respects
|
|
|
|
* for all of the code used other than OpenSSL. If you modify
|
|
|
|
* file(s) with this exception, you may extend this exception to your
|
|
|
|
* version of the file(s), but you are not obligated to do so. If you
|
|
|
|
* do not wish to do so, delete this exception statement from your
|
|
|
|
* version. If you delete this exception statement from all source
|
|
|
|
* files in the program, then also delete it here.
|
|
|
|
*/
|
|
|
|
/* copyright --> */
|
|
|
|
#include "HttpServer.h"
|
2009-05-08 07:58:50 +00:00
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
|
2009-01-25 09:58:40 +00:00
|
|
|
#include "HttpHeader.h"
|
|
|
|
#include "SocketCore.h"
|
|
|
|
#include "HttpHeaderProcessor.h"
|
|
|
|
#include "DlAbortEx.h"
|
|
|
|
#include "message.h"
|
2009-10-22 15:35:33 +00:00
|
|
|
#include "util.h"
|
2009-01-25 10:55:27 +00:00
|
|
|
#include "LogFactory.h"
|
|
|
|
#include "Logger.h"
|
2011-11-05 12:13:49 +00:00
|
|
|
#include "base64.h"
|
2009-06-06 12:33:07 +00:00
|
|
|
#include "a2functional.h"
|
2010-11-20 08:21:36 +00:00
|
|
|
#include "fmt.h"
|
2011-01-16 08:27:01 +00:00
|
|
|
#include "SocketRecvBuffer.h"
|
2011-02-09 14:01:01 +00:00
|
|
|
#include "TimeA2.h"
|
2011-11-04 13:27:58 +00:00
|
|
|
#include "array_fun.h"
|
2012-07-14 09:59:56 +00:00
|
|
|
#include "JsonDiskWriter.h"
|
|
|
|
#ifdef ENABLE_XML_RPC
|
|
|
|
# include "XmlRpcDiskWriter.h"
|
|
|
|
#endif // ENABLE_XML_RPC
|
2009-01-25 09:58:40 +00:00
|
|
|
|
|
|
|
namespace aria2 {
|
|
|
|
|
2013-03-01 12:17:52 +00:00
|
|
|
HttpServer::HttpServer(const SharedHandle<SocketCore>& socket)
|
2010-11-20 08:21:36 +00:00
|
|
|
: socket_(socket),
|
2011-01-16 08:27:01 +00:00
|
|
|
socketRecvBuffer_(new SocketRecvBuffer(socket_)),
|
2010-11-20 08:21:36 +00:00
|
|
|
socketBuffer_(socket),
|
2012-06-23 08:34:20 +00:00
|
|
|
headerProcessor_(new HttpHeaderProcessor
|
|
|
|
(HttpHeaderProcessor::SERVER_PARSER)),
|
2012-07-14 09:59:56 +00:00
|
|
|
lastContentLength_(0),
|
|
|
|
bodyConsumed_(0),
|
|
|
|
reqType_(RPC_TYPE_NONE),
|
2010-11-20 08:21:36 +00:00
|
|
|
keepAlive_(true),
|
|
|
|
gzip_(false),
|
2012-10-29 14:09:16 +00:00
|
|
|
acceptsGZip_(false),
|
|
|
|
secure_(false)
|
2009-01-25 09:58:40 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
HttpServer::~HttpServer() {}
|
|
|
|
|
2012-03-25 13:10:36 +00:00
|
|
|
namespace {
|
|
|
|
const char* getStatusString(int status)
|
|
|
|
{
|
|
|
|
switch(status) {
|
|
|
|
case 100: return "100 Continue";
|
|
|
|
case 101: return "101 Switching Protocols";
|
|
|
|
case 200: return "200 OK";
|
|
|
|
case 201: return "201 Created";
|
|
|
|
case 202: return "202 Accepted";
|
|
|
|
case 203: return "203 Non-Authoritative Information";
|
|
|
|
case 204: return "204 No Content";
|
|
|
|
case 205: return "205 Reset Content";
|
|
|
|
case 206: return "206 Partial Content";
|
|
|
|
case 300: return "300 Multiple Choices";
|
|
|
|
case 301: return "301 Moved Permanently";
|
|
|
|
case 302: return "302 Found";
|
|
|
|
case 303: return "303 See Other";
|
|
|
|
case 304: return "304 Not Modified";
|
|
|
|
case 305: return "305 Use Proxy";
|
|
|
|
// case 306: return "306 (Unused)";
|
|
|
|
case 307: return "307 Temporary Redirect";
|
|
|
|
case 400: return "400 Bad Request";
|
|
|
|
case 401: return "401 Unauthorized";
|
|
|
|
case 402: return "402 Payment Required";
|
|
|
|
case 403: return "403 Forbidden";
|
|
|
|
case 404: return "404 Not Found";
|
|
|
|
case 405: return "405 Method Not Allowed";
|
|
|
|
case 406: return "406 Not Acceptable";
|
|
|
|
case 407: return "407 Proxy Authentication Required";
|
|
|
|
case 408: return "408 Request Timeout";
|
|
|
|
case 409: return "409 Conflict";
|
|
|
|
case 410: return "410 Gone";
|
|
|
|
case 411: return "411 Length Required";
|
|
|
|
case 412: return "412 Precondition Failed";
|
|
|
|
case 413: return "413 Request Entity Too Large";
|
|
|
|
case 414: return "414 Request-URI Too Long";
|
|
|
|
case 415: return "415 Unsupported Media Type";
|
|
|
|
case 416: return "416 Requested Range Not Satisfiable";
|
|
|
|
case 417: return "417 Expectation Failed";
|
|
|
|
// RFC 2817 defines 426 status code.
|
|
|
|
case 426: return "426 Upgrade Required";
|
|
|
|
case 500: return "500 Internal Server Error";
|
|
|
|
case 501: return "501 Not Implemented";
|
|
|
|
case 502: return "502 Bad Gateway";
|
|
|
|
case 503: return "503 Service Unavailable";
|
|
|
|
case 504: return "504 Gateway Timeout";
|
|
|
|
case 505: return "505 HTTP Version Not Supported";
|
|
|
|
default: return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2009-01-25 09:58:40 +00:00
|
|
|
SharedHandle<HttpHeader> HttpServer::receiveRequest()
|
|
|
|
{
|
2011-01-16 08:27:01 +00:00
|
|
|
if(socketRecvBuffer_->bufferEmpty()) {
|
|
|
|
if(socketRecvBuffer_->recv() == 0 &&
|
|
|
|
!socket_->wantRead() && !socket_->wantWrite()) {
|
|
|
|
throw DL_ABORT_EX(EX_EOF_FROM_PEER);
|
|
|
|
}
|
2009-01-25 09:58:40 +00:00
|
|
|
}
|
2012-06-23 08:34:20 +00:00
|
|
|
SharedHandle<HttpHeader> header;
|
|
|
|
if(headerProcessor_->parse(socketRecvBuffer_->getBuffer(),
|
|
|
|
socketRecvBuffer_->getBufferLength())) {
|
|
|
|
header = headerProcessor_->getResult();
|
2010-11-20 08:21:36 +00:00
|
|
|
A2_LOG_INFO(fmt("HTTP Server received request\n%s",
|
|
|
|
headerProcessor_->getHeaderString().c_str()));
|
2012-06-23 08:34:20 +00:00
|
|
|
socketRecvBuffer_->shiftBuffer(headerProcessor_->getLastBytesProcessed());
|
2010-06-21 13:51:56 +00:00
|
|
|
lastRequestHeader_ = header;
|
2012-07-14 09:59:56 +00:00
|
|
|
bodyConsumed_ = 0;
|
|
|
|
if(setupResponseRecv() < 0) {
|
|
|
|
A2_LOG_INFO("Request path is invaild. Ignore the request body.");
|
|
|
|
}
|
2012-09-29 15:50:14 +00:00
|
|
|
const std::string& contentLengthHdr = lastRequestHeader_->
|
|
|
|
find(HttpHeader::CONTENT_LENGTH);
|
|
|
|
if(!contentLengthHdr.empty()) {
|
|
|
|
if(!util::parseLLIntNoThrow(lastContentLength_, contentLengthHdr) ||
|
|
|
|
lastContentLength_ < 0) {
|
|
|
|
throw DL_ABORT_EX(fmt("Invalid Content-Length=%s",
|
|
|
|
contentLengthHdr.c_str()));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
lastContentLength_ = 0;
|
2011-12-07 13:57:34 +00:00
|
|
|
}
|
2010-06-21 13:51:56 +00:00
|
|
|
headerProcessor_->clear();
|
2009-01-25 10:55:27 +00:00
|
|
|
|
2011-11-04 13:27:58 +00:00
|
|
|
std::vector<Scip> acceptEncodings;
|
|
|
|
const std::string& acceptEnc =
|
2011-11-11 13:50:18 +00:00
|
|
|
lastRequestHeader_->find(HttpHeader::ACCEPT_ENCODING);
|
2011-11-04 13:27:58 +00:00
|
|
|
util::splitIter(acceptEnc.begin(), acceptEnc.end(),
|
|
|
|
std::back_inserter(acceptEncodings), ',', true);
|
|
|
|
acceptsGZip_ = false;
|
|
|
|
for(std::vector<Scip>::const_iterator i = acceptEncodings.begin(),
|
|
|
|
eoi = acceptEncodings.end(); i != eoi; ++i) {
|
2012-09-23 12:46:01 +00:00
|
|
|
if(util::strieq((*i).first, (*i).second, "gzip")) {
|
2011-11-04 13:27:58 +00:00
|
|
|
acceptsGZip_ = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-01-16 08:27:01 +00:00
|
|
|
} else {
|
2012-06-23 08:34:20 +00:00
|
|
|
socketRecvBuffer_->shiftBuffer(headerProcessor_->getLastBytesProcessed());
|
2010-01-22 14:09:39 +00:00
|
|
|
}
|
2012-06-23 08:34:20 +00:00
|
|
|
return header;
|
2009-01-25 10:55:27 +00:00
|
|
|
}
|
|
|
|
|
2009-05-08 07:58:50 +00:00
|
|
|
bool HttpServer::receiveBody()
|
|
|
|
{
|
2012-07-14 09:59:56 +00:00
|
|
|
if(lastContentLength_ == bodyConsumed_) {
|
2009-05-08 07:58:50 +00:00
|
|
|
return true;
|
|
|
|
}
|
2011-01-16 08:27:01 +00:00
|
|
|
if(socketRecvBuffer_->bufferEmpty()) {
|
|
|
|
if(socketRecvBuffer_->recv() == 0 &&
|
|
|
|
!socket_->wantRead() && !socket_->wantWrite()) {
|
|
|
|
throw DL_ABORT_EX(EX_EOF_FROM_PEER);
|
|
|
|
}
|
2009-05-08 07:58:50 +00:00
|
|
|
}
|
2011-01-16 08:27:01 +00:00
|
|
|
size_t length =
|
|
|
|
std::min(socketRecvBuffer_->getBufferLength(),
|
2012-07-14 09:59:56 +00:00
|
|
|
static_cast<size_t>(lastContentLength_ - bodyConsumed_));
|
|
|
|
if(lastBody_) {
|
|
|
|
lastBody_->writeData(socketRecvBuffer_->getBuffer(), length, 0);
|
|
|
|
}
|
2011-01-16 08:27:01 +00:00
|
|
|
socketRecvBuffer_->shiftBuffer(length);
|
2012-07-14 09:59:56 +00:00
|
|
|
bodyConsumed_ += length;
|
|
|
|
return lastContentLength_ == bodyConsumed_;
|
2009-05-08 07:58:50 +00:00
|
|
|
}
|
|
|
|
|
2011-03-13 15:57:05 +00:00
|
|
|
const std::string& HttpServer::getMethod() const
|
|
|
|
{
|
|
|
|
return lastRequestHeader_->getMethod();
|
|
|
|
}
|
|
|
|
|
2009-05-08 07:58:50 +00:00
|
|
|
const std::string& HttpServer::getRequestPath() const
|
|
|
|
{
|
2010-06-21 13:51:56 +00:00
|
|
|
return lastRequestHeader_->getRequestPath();
|
2009-05-08 07:58:50 +00:00
|
|
|
}
|
|
|
|
|
2011-11-05 08:28:48 +00:00
|
|
|
void HttpServer::feedResponse(std::string& text, const std::string& contentType)
|
2009-01-25 09:58:40 +00:00
|
|
|
{
|
2012-03-25 13:10:36 +00:00
|
|
|
feedResponse(200, "", text, contentType);
|
2009-05-09 15:38:23 +00:00
|
|
|
}
|
|
|
|
|
2012-03-25 13:10:36 +00:00
|
|
|
void HttpServer::feedResponse(int status,
|
2010-01-05 16:01:46 +00:00
|
|
|
const std::string& headers,
|
2012-03-25 13:10:36 +00:00
|
|
|
const std::string& text,
|
2010-01-05 16:01:46 +00:00
|
|
|
const std::string& contentType)
|
2009-05-09 15:38:23 +00:00
|
|
|
{
|
2011-02-09 14:01:01 +00:00
|
|
|
std::string httpDate = Time().toHTTPDate();
|
2011-11-12 10:24:38 +00:00
|
|
|
std::string header= fmt("HTTP/1.1 %s\r\n"
|
|
|
|
"Date: %s\r\n"
|
|
|
|
"Content-Length: %lu\r\n"
|
|
|
|
"Expires: %s\r\n"
|
2012-03-25 13:10:36 +00:00
|
|
|
"Cache-Control: no-cache\r\n",
|
|
|
|
getStatusString(status),
|
2011-11-12 10:24:38 +00:00
|
|
|
httpDate.c_str(),
|
|
|
|
static_cast<unsigned long>(text.size()),
|
2012-03-25 13:10:36 +00:00
|
|
|
httpDate.c_str());
|
|
|
|
if(!contentType.empty()) {
|
|
|
|
header += "Content-Type: ";
|
|
|
|
header += contentType;
|
|
|
|
header += "\r\n";
|
|
|
|
}
|
2011-08-18 12:22:48 +00:00
|
|
|
if(!allowOrigin_.empty()) {
|
2011-11-12 10:24:38 +00:00
|
|
|
header += "Access-Control-Allow-Origin: ";
|
|
|
|
header += allowOrigin_;
|
|
|
|
header += "\r\n";
|
2009-01-25 10:55:27 +00:00
|
|
|
}
|
2012-03-25 13:10:36 +00:00
|
|
|
if(supportsGZip()) {
|
|
|
|
header += "Content-Encoding: gzip\r\n";
|
2009-05-09 15:38:23 +00:00
|
|
|
}
|
2012-03-25 13:10:36 +00:00
|
|
|
if(!supportsPersistentConnection()) {
|
|
|
|
header += "Connection: close\r\n";
|
|
|
|
}
|
|
|
|
header += headers;
|
2009-01-25 10:55:27 +00:00
|
|
|
header += "\r\n";
|
2010-11-20 08:21:36 +00:00
|
|
|
A2_LOG_DEBUG(fmt("HTTP Server sends response:\n%s", header.c_str()));
|
2011-11-11 16:19:01 +00:00
|
|
|
socketBuffer_.pushStr(header);
|
|
|
|
socketBuffer_.pushStr(text);
|
2009-01-25 09:58:40 +00:00
|
|
|
}
|
|
|
|
|
2012-03-20 12:42:09 +00:00
|
|
|
void HttpServer::feedUpgradeResponse(const std::string& protocol,
|
|
|
|
const std::string& headers)
|
|
|
|
{
|
|
|
|
std::string header= fmt("HTTP/1.1 101 Switching Protocols\r\n"
|
|
|
|
"Upgrade: %s\r\n"
|
|
|
|
"Connection: Upgrade\r\n"
|
|
|
|
"%s"
|
|
|
|
"\r\n",
|
|
|
|
protocol.c_str(),
|
|
|
|
headers.c_str());
|
|
|
|
A2_LOG_DEBUG(fmt("HTTP Server sends upgrade response:\n%s", header.c_str()));
|
|
|
|
socketBuffer_.pushStr(header);
|
|
|
|
}
|
|
|
|
|
2009-01-25 09:58:40 +00:00
|
|
|
ssize_t HttpServer::sendResponse()
|
|
|
|
{
|
2010-06-21 13:51:56 +00:00
|
|
|
return socketBuffer_.send();
|
2009-01-25 09:58:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool HttpServer::sendBufferIsEmpty() const
|
|
|
|
{
|
2010-06-21 13:51:56 +00:00
|
|
|
return socketBuffer_.sendBufferIsEmpty();
|
2009-01-25 09:58:40 +00:00
|
|
|
}
|
|
|
|
|
2009-05-09 15:38:23 +00:00
|
|
|
bool HttpServer::authenticate()
|
|
|
|
{
|
2010-06-21 13:51:56 +00:00
|
|
|
if(username_.empty()) {
|
2009-05-09 15:38:23 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-11-11 13:50:18 +00:00
|
|
|
const std::string& authHeader =
|
|
|
|
lastRequestHeader_->find(HttpHeader::AUTHORIZATION);
|
2009-05-09 15:38:23 +00:00
|
|
|
if(authHeader.empty()) {
|
|
|
|
return false;
|
|
|
|
}
|
2011-11-03 14:09:03 +00:00
|
|
|
std::pair<Scip, Scip> p;
|
|
|
|
util::divide(p, authHeader.begin(), authHeader.end(), ' ');
|
2012-01-10 16:03:38 +00:00
|
|
|
if(!util::streq(p.first.first, p.first.second, "Basic")) {
|
2009-05-09 15:38:23 +00:00
|
|
|
return false;
|
|
|
|
}
|
2011-11-05 14:30:46 +00:00
|
|
|
std::string userpass = base64::decode(p.second.first, p.second.second);
|
2011-11-05 03:01:57 +00:00
|
|
|
std::pair<Sip, Sip> up;
|
|
|
|
util::divide(up, userpass.begin(), userpass.end(), ':');
|
|
|
|
return util::streq(up.first.first, up.first.second,
|
2011-11-04 13:27:58 +00:00
|
|
|
username_.begin(), username_.end()) &&
|
2011-11-05 03:01:57 +00:00
|
|
|
util::streq(up.second.first, up.second.second,
|
2011-11-04 13:27:58 +00:00
|
|
|
password_.begin(), password_.end());
|
2009-05-09 15:38:23 +00:00
|
|
|
}
|
|
|
|
|
2010-11-14 07:17:55 +00:00
|
|
|
void HttpServer::setUsernamePassword
|
|
|
|
(const std::string& username, const std::string& password)
|
|
|
|
{
|
|
|
|
username_ = username;
|
|
|
|
password_ = password;
|
|
|
|
}
|
|
|
|
|
2012-07-14 09:59:56 +00:00
|
|
|
int HttpServer::setupResponseRecv()
|
|
|
|
{
|
|
|
|
std::string path = createPath();
|
|
|
|
if(getMethod() == "GET") {
|
|
|
|
if(path == "/jsonrpc") {
|
|
|
|
reqType_ = RPC_TYPE_JSONP;
|
|
|
|
lastBody_.reset();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else if(getMethod() == "POST") {
|
2012-09-02 12:04:36 +00:00
|
|
|
if(path == "/jsonrpc") {
|
|
|
|
if(reqType_ != RPC_TYPE_JSON) {
|
|
|
|
reqType_ = RPC_TYPE_JSON;
|
|
|
|
lastBody_.reset(new json::JsonDiskWriter());
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#ifdef ENABLE_XML_RPC
|
2012-07-14 09:59:56 +00:00
|
|
|
if(path == "/rpc") {
|
|
|
|
if(reqType_ != RPC_TYPE_XML) {
|
|
|
|
reqType_ = RPC_TYPE_XML;
|
|
|
|
lastBody_.reset(new rpc::XmlRpcDiskWriter());
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2012-09-02 12:04:36 +00:00
|
|
|
#endif // ENABLE_XML_RPC
|
2012-07-14 09:59:56 +00:00
|
|
|
}
|
|
|
|
reqType_ = RPC_TYPE_NONE;
|
|
|
|
lastBody_.reset();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string HttpServer::createPath() const
|
|
|
|
{
|
|
|
|
std::string reqPath = getRequestPath();
|
|
|
|
size_t i;
|
|
|
|
size_t len = reqPath.size();
|
|
|
|
for(i = 0; i < len; ++i) {
|
|
|
|
if(reqPath[i] == '#' || reqPath[i] == '?') {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
reqPath = reqPath.substr(0, i);
|
|
|
|
if(reqPath.empty()) {
|
|
|
|
reqPath = "/";
|
|
|
|
}
|
|
|
|
return reqPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string HttpServer::createQuery() const
|
|
|
|
{
|
|
|
|
std::string reqPath = getRequestPath();
|
|
|
|
size_t i;
|
|
|
|
size_t len = reqPath.size();
|
|
|
|
for(i = 0; i < len; ++i) {
|
|
|
|
if(reqPath[i] == '#' || reqPath[i] == '?') {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(i == len || reqPath[i] == '#') {
|
|
|
|
return "";
|
|
|
|
} else {
|
|
|
|
size_t start = i;
|
|
|
|
for(; i < len; ++i) {
|
|
|
|
if(reqPath[i] == '#') {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return reqPath.substr(start, i - start);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-23 12:46:01 +00:00
|
|
|
bool HttpServer::supportsPersistentConnection() const
|
|
|
|
{
|
|
|
|
return keepAlive_ &&
|
|
|
|
lastRequestHeader_ && lastRequestHeader_->isKeepAlive();
|
|
|
|
}
|
|
|
|
|
2012-09-29 15:50:14 +00:00
|
|
|
bool HttpServer::wantRead() const
|
|
|
|
{
|
|
|
|
return socket_->wantRead();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool HttpServer::wantWrite() const
|
|
|
|
{
|
|
|
|
return socket_->wantWrite();
|
|
|
|
}
|
|
|
|
|
2009-01-25 09:58:40 +00:00
|
|
|
} // namespace aria2
|