2006-03-21 14:12:51 +00:00
|
|
|
/* <!-- copyright */
|
|
|
|
/*
|
2006-09-21 15:31:24 +00:00
|
|
|
* aria2 - The high speed download utility
|
2006-03-21 14:12:51 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2006 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
|
2006-09-21 15:31:24 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
* 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.
|
2006-03-21 14:12:51 +00:00
|
|
|
*/
|
|
|
|
/* copyright --> */
|
|
|
|
#ifndef _D_PEER_CONNECTION_H_
|
|
|
|
#define _D_PEER_CONNECTION_H_
|
|
|
|
|
|
|
|
#include "Option.h"
|
|
|
|
#include "Socket.h"
|
|
|
|
#include "Logger.h"
|
2006-05-26 15:28:19 +00:00
|
|
|
#include "common.h"
|
2006-03-21 14:12:51 +00:00
|
|
|
|
|
|
|
// we assume maximum length of incoming message is "piece" message with 16KB
|
|
|
|
// data. Messages beyond that size are dropped.
|
|
|
|
#define MAX_PAYLOAD_LEN (9+16*1024)
|
|
|
|
|
|
|
|
class PeerConnection {
|
|
|
|
private:
|
2006-12-24 06:25:21 +00:00
|
|
|
int32_t cuid;
|
2006-07-19 17:07:45 +00:00
|
|
|
SocketHandle socket;
|
2006-03-21 14:12:51 +00:00
|
|
|
const Option* option;
|
|
|
|
const Logger* logger;
|
|
|
|
|
|
|
|
char resbuf[MAX_PAYLOAD_LEN];
|
2006-12-24 06:25:21 +00:00
|
|
|
uint32_t resbufLength;
|
|
|
|
uint32_t currentPayloadLength;
|
|
|
|
unsigned char lenbuf[4];
|
|
|
|
uint32_t lenbufLength;
|
2006-03-21 14:12:51 +00:00
|
|
|
|
|
|
|
public:
|
2006-12-24 06:25:21 +00:00
|
|
|
PeerConnection(int32_t cuid, const SocketHandle& socket, const Option* op);
|
2006-03-21 14:12:51 +00:00
|
|
|
~PeerConnection();
|
2006-05-18 17:08:29 +00:00
|
|
|
|
|
|
|
// Returns the number of bytes written
|
2006-12-24 06:25:21 +00:00
|
|
|
uint32_t sendMessage(const unsigned char* data, uint32_t dataLength);
|
|
|
|
|
|
|
|
bool receiveMessage(unsigned char* data, uint32_t& dataLength);
|
2006-03-21 14:12:51 +00:00
|
|
|
|
2006-06-24 16:09:14 +00:00
|
|
|
/**
|
|
|
|
* Returns true if a handshake message is fully received, otherwise returns
|
|
|
|
* false.
|
|
|
|
* In both cases, 'msg' is filled with received bytes and the filled length
|
|
|
|
* is assigned to 'length'.
|
|
|
|
*/
|
2006-12-24 06:25:21 +00:00
|
|
|
bool receiveHandshake(unsigned char* data, uint32_t& dataLength);
|
2006-03-21 14:12:51 +00:00
|
|
|
};
|
|
|
|
|
2006-12-24 06:25:21 +00:00
|
|
|
typedef SharedHandle<PeerConnection> PeerConnectionHandle;
|
|
|
|
|
2006-03-21 14:12:51 +00:00
|
|
|
#endif // _D_PEER_CONNECTION_H_
|