From 82575bd44dc02bd1febd265c1db0f05b298329af Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Sat, 24 Aug 2013 00:48:24 +0200 Subject: [PATCH] Tell invited node about Mode and Broadcast settings. Since these settings really should be the same for all nodes in a VPN. --- src/invitation.c | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/invitation.c b/src/invitation.c index 188ea2db..36dfa41b 100644 --- a/src/invitation.c +++ b/src/invitation.c @@ -381,7 +381,19 @@ int cmd_invite(int argc, char *argv[]) { if(netname) fprintf(f, "NetName = %s\n", netname); fprintf(f, "ConnectTo = %s\n", myname); - // TODO: copy Broadcast and Mode + + // Copy Broadcast and Mode + FILE *tc = fopen(tinc_conf, "r"); + if(tc) { + char buf[1024]; + while(fgets(buf, sizeof buf, tc)) { + if((!strncasecmp(buf, "Mode", 4) && strchr(" \t=", buf[4])) + || (!strncasecmp(buf, "Broadcast", 9) && strchr(" \t=", buf[9]))) + fputs(buf, f); + } + fclose(tc); + } + fprintf(f, "#---------------------------------------------------------------#\n"); fprintf(f, "Name = %s\n", myname); -- 2.20.1