2012-10-28 10:21:58 -04:00
|
|
|
|
2012-12-09 08:19:28 -05:00
|
|
|
#include "bootstrap_fn.h"
|
|
|
|
#include <iostream>
|
|
|
|
#include <inttypes.h>
|
2012-10-28 10:21:58 -04:00
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
|
|
|
|
std::string bootstrapfile = "bdboot.txt";
|
2012-12-09 08:19:28 -05:00
|
|
|
std::string peerId;
|
|
|
|
std::string ip;
|
|
|
|
uint16_t port;
|
|
|
|
|
|
|
|
std::cerr << "bssdht: starting up";
|
2012-10-28 10:21:58 -04:00
|
|
|
std::cerr << std::endl;
|
|
|
|
|
2012-12-09 08:19:28 -05:00
|
|
|
bdSingleShotFindPeer(bootstrapfile, peerId, ip, port);
|
2012-10-28 10:21:58 -04:00
|
|
|
|
2012-12-09 08:19:28 -05:00
|
|
|
std::cerr << "bssdht: finished";
|
2012-10-28 10:21:58 -04:00
|
|
|
std::cerr << std::endl;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|