Skip to content

Commit

Permalink
rename opeer -> oseed
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4462 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
borg-0300 committed Feb 8, 2008
1 parent 77ba446 commit 22485dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htroot/yacy/search.java
Expand Up @@ -97,12 +97,12 @@ public static serverObjects respond(httpHeader header, serverObjects post, serve
sb.remoteSearchLastAccess = System.currentTimeMillis();

// myseed = complete seed of the requesting peer, key = transmission key for response
final yacySeed opeer = yacySeed.genRemoteSeed(post.get("myseed", ""), post.get("key", ""), true);
final yacySeed oseed = yacySeed.genRemoteSeed(post.get("myseed", ""), post.get("key", ""), true);
// store accessing peer
if (yacyCore.seedDB == null) {
yacyCore.log.logSevere("yacy.search: seed cache not initialized");
} else {
yacyCore.peerActions.peerArrival(opeer, true);
yacyCore.peerActions.peerArrival(oseed, true);
}

// final String youare = post.get("youare", ""); // seed hash of the target peer, used for testing network stability
Expand Down

0 comments on commit 22485dc

Please sign in to comment.