mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-24 14:20:44 -04:00
Fixed up bootstrap singleshot search function. Now returns parameters.
Not functioning 100% correctly yet - due to libbitdht behaviour (TO FIX) git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6005 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
766d156315
commit
5803a5ab65
2 changed files with 66 additions and 1 deletions
|
@ -3,6 +3,22 @@
|
|||
#include <iostream>
|
||||
#include <inttypes.h>
|
||||
|
||||
void args(char *name)
|
||||
{
|
||||
std::cerr << std::endl;
|
||||
std::cerr << "Dht Single Shot Searcher";
|
||||
std::cerr << std::endl;
|
||||
std::cerr << "Usage:";
|
||||
std::cerr << std::endl;
|
||||
std::cerr << "\t" << name << " -p <peerId> ";
|
||||
std::cerr << std::endl;
|
||||
std::cerr << std::endl;
|
||||
std::cerr << "NB: The PeerId is Required to Run";
|
||||
std::cerr << std::endl;
|
||||
std::cerr << std::endl;
|
||||
}
|
||||
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
|
||||
|
@ -10,6 +26,31 @@ int main(int argc, char **argv)
|
|||
std::string peerId;
|
||||
std::string ip;
|
||||
uint16_t port;
|
||||
int c;
|
||||
bool havePeerId = false;
|
||||
|
||||
|
||||
while((c = getopt(argc, argv,"p:")) != -1)
|
||||
{
|
||||
switch (c)
|
||||
{
|
||||
case 'p':
|
||||
peerId = optarg;
|
||||
havePeerId = true;
|
||||
break;
|
||||
default:
|
||||
args(argv[0]);
|
||||
return 1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (!havePeerId)
|
||||
{
|
||||
args(argv[0]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
std::cerr << "bssdht: starting up";
|
||||
std::cerr << std::endl;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue