Show
Ignore:
Timestamp:
02/28/08 14:54:36 (4 years ago)
Author:
rakshasa
Message:

* Added {get/set}_xmlrpc_size_limit to allow the user to specify
larger buffer size for handling direct loading of torrents through
xmlrpc.

* Allow file and tracker targets with the compact xmlrpc syntax,
e.g. "<infohash>:f<id>".

* Fixed an alignment bug in the DHT code.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/libtorrent/src/download/download_info.h

    r1004 r1040  
    3535//           3185 Skoppum, NORWAY 
    3636 
    37 #ifndef LIBTORRENT_TRACKER_INFO_H 
    38 #define LIBTORRENT_TRACKER_INFO_H 
     37#ifndef LIBTORRENT_DOWNLOAD_INFO_H 
     38#define LIBTORRENT_DOWNLOAD_INFO_H 
    3939 
    4040#include <list> 
     
    190190  SocketAddressCompact() {} 
    191191  SocketAddressCompact(uint32_t a, uint16_t p) : addr(a), port(p) {} 
     192  SocketAddressCompact(const rak::socket_address_inet* sa) : addr(sa->address_n()), port(sa->port_n()) {} 
    192193 
    193194  operator rak::socket_address () const {