*** empty log message ***
This commit is contained in:
@@ -136,7 +136,7 @@ The <tt>session</tt> class has the following synopsis:
|
||||
<pre>
|
||||
class session: public boost::noncopyable
|
||||
{
|
||||
session(int listen_port);
|
||||
session(int listen_port, const std::string& fingerprint = std::string());
|
||||
|
||||
torrent_handle add_torrent(const torrent_info& t, const std::string& save_path);
|
||||
|
||||
@@ -153,6 +153,13 @@ want to save the files. The <tt>save_path</tt> will be prepended to the director
|
||||
structure in the torrent-file.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<tt>fingerprint</tt> is a short string that will be used in the peer_id to
|
||||
identify the client. If you want your fingerprint to be shorter than 4
|
||||
characters, you can terminate the string with a null. The default is an
|
||||
empty string.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
How to parse a torrent file and create a <tt>torrent_info</tt> object is described below.
|
||||
</p>
|
||||
@@ -597,7 +604,6 @@ struct http_settings
|
||||
std::string user_agent;
|
||||
int tracker_timeout;
|
||||
int tracker_maximum_response_length;
|
||||
char fingerprint[4];
|
||||
};
|
||||
</pre>
|
||||
|
||||
@@ -617,13 +623,6 @@ uncompressed (given your limit is lower than 2 megs). Default limit is
|
||||
1 megabyte.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<tt>fingerprint</tt> is a short string that will be used in the peer_id to
|
||||
identify the client. If you want your fingerprint to be shorter than 4
|
||||
characters, you can terminate the string with a null. The default is an
|
||||
empty string.
|
||||
</p>
|
||||
|
||||
<h2><a name="big_number"></a>big_number</h2>
|
||||
|
||||
<p>
|
||||
|
Reference in New Issue
Block a user