This commit is contained in:
zzz
2012-08-05 16:55:39 +00:00
parent 280a708afe
commit 67f16b0de4
6 changed files with 11 additions and 6 deletions

View File

@ -194,10 +194,10 @@ interface PeerListener
*
* @param peer the Peer that got the message.
* @param port the query port
* @param port the response port
* @param rport the response port
* @since 0.8.4
*/
void gotPort(Peer peer, int port, int qport);
void gotPort(Peer peer, int port, int rport);
/**
* Called when peers are received via PEX

View File

@ -98,7 +98,7 @@ class DHTNodes {
/**
* DHT
* @param sha1 either a InfoHash or a NID
* @param h either a InfoHash or a NID
*/
public List<NodeInfo> findClosest(SHA1Hash h, int numWant) {
NID key;

View File

@ -383,7 +383,7 @@ public class KRPC implements I2PSessionMuxedListener, DHT {
* Non-blocking.
*
* @param ih the Info Hash (torrent)
* @param peer the peer's Hash
* @param peerHash the peer's Hash
*/
public void announce(byte[] ih, byte[] peerHash) {
InfoHash iHash = new InfoHash(ih);