Skip to content
Snippets Groups Projects
Commit 74bdf79b authored by lemoer's avatar lemoer Committed by Matthias Schiffer
Browse files

gluon-neighbour-info: use default port 1001 and default dest ::1

parent 19e0f795
No related branches found
No related tags found
No related merge requests found
......@@ -37,8 +37,8 @@
void usage() {
puts("Usage: gluon-neighbour-info [-h] [-s] [-l] [-c <count>] [-t <sec>] -d <dest> -p <port> -i <if0> -r <request>");
puts(" -p <int> UDP port");
puts(" -d <ip6> destination address (unicast ip6 or multicast group, e.g. ff02:0:0:0:0:0:2:1001)");
puts(" -p <int> UDP port (default: 1001)");
puts(" -d <ip6> destination address (unicast ip6 or multicast group, e.g. ff02:0:0:0:0:0:2:1001, default: ::1)");
puts(" -i <string> interface, e.g. eth0 ");
puts(" -r <string> request, e.g. nodeinfo");
puts(" -t <sec> timeout in seconds (default: 3)");
......@@ -144,6 +144,8 @@ int main(int argc, char **argv) {
exit(EXIT_FAILURE);
}
client_addr.sin6_addr = in6addr_loopback;
client_addr.sin6_port = htons(1001);
client_addr.sin6_family = AF_INET6;
opterr = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment