Coding style corrections
[tinc] / src / tincctl.c
index 9b16a7b..7e08629 100644 (file)
@@ -92,6 +92,7 @@ static void usage(bool status) {
                                "  purge                      Purge unreachable nodes\n"
                                "  debug N                    Set debug level\n"
                                "  retry                      Retry all outgoing connections\n"
+                               "  reload                     Partial reload of configuration\n"
                                "\n"));
                printf(_("Report bugs to tinc@tinc-vpn.org.\n"));
        }
@@ -334,13 +335,13 @@ static void make_names(void) {
 static int fullread(int fd, void *data, size_t datalen) {
        int rv, len = 0;
 
-       while (len < datalen) {
+       while(len < datalen) {
                rv = read(fd, data + len, datalen - len);
                if(rv == -1 && errno == EINTR)
                        continue;
-               else if (rv == -1)
+               else if(rv == -1)
                        return rv;
-               else if (rv == 0) {
+               else if(rv == 0) {
                        errno = ENODATA;
                        return -1;
                }
@@ -385,7 +386,7 @@ static int send_ctl_request(int fd, enum request_type type,
        }
 
        if(req.length > sizeof req) {
-               if (indata_p == NULL) {
+               if(indata_p == NULL) {
                        errno = EINVAL;
                        return -1;
                }
@@ -550,7 +551,7 @@ int main(int argc, char *argv[], char *envp[]) {
        }
 
        if(!strcasecmp(argv[optind], "dump")) {
-               if (argc < optind + 2) {
+               if(argc < optind + 2) {
                        fprintf(stderr, _("Not enough arguments.\n"));
                        usage(true);
                        return 1;
@@ -601,6 +602,10 @@ int main(int argc, char *argv[], char *envp[]) {
                return send_ctl_request_cooked(fd, REQ_RETRY, NULL, 0) != -1;
        }
 
+       if(!strcasecmp(argv[optind], "reload")) {
+               return send_ctl_request_cooked(fd, REQ_RELOAD, NULL, 0) != -1;
+       }
+
        fprintf(stderr, _("Unknown command `%s'.\n"), argv[optind]);
        usage(true);