]> rtime.felk.cvut.cz Git - sojka/can-utils.git/blobdiff - canplayer.c
Added new socketoptions to force the isotp protocol to intentionally
[sojka/can-utils.git] / canplayer.c
index efce089fb9421c321bb6ba30d4c3c3bd42a6e85d..c3e739d74ff00884d1832ad02100f7be3ae58ab4 100644 (file)
@@ -310,11 +310,12 @@ int main(int argc, char **argv)
                loops = 1;
        }
 
-       if (verbose > 1) /* use -v -v to see this */
+       if (verbose > 1) /* use -v -v to see this */
                if (infinite_loops)
                        printf("infinite_loops\n");
                else
                        printf("%d loops\n", loops);
+       }
 
        sleep_ts.tv_sec  =  gap / 1000;
        sleep_ts.tv_nsec = (gap % 1000) * 1000000;
@@ -423,11 +424,12 @@ int main(int argc, char **argv)
                                        txidx = get_txidx(device);
                                }
 
-                               if (txidx == STDOUTIDX) /* hook to print logfile lines on stdout */
+                               if (txidx == STDOUTIDX) /* hook to print logfile lines on stdout */
 
                                        printf("%s", buf); /* print the line AS-IS without extra \n */
+                                       fflush(stdout);
 
-                               else if (txidx > 0) { /* only send to valid CAN devices */
+                               else if (txidx > 0) { /* only send to valid CAN devices */
 
                                        if (parse_canframe(ascframe, &frame)) {
                                                fprintf(stderr, "wrong CAN frame format: '%s'!", ascframe);