]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
ebpf: fix invalid description in doc string
authorEric Leblond <eric@regit.org>
Sat, 5 Sep 2020 20:57:23 +0000 (22:57 +0200)
committerVictor Julien <victor@inliniac.net>
Tue, 8 Sep 2020 05:52:07 +0000 (07:52 +0200)
src/util-ebpf.c

index d7c0484c927eafea1fbeccc73ddb905e06f1743d..b622b6ca00b6cb5882e5e409ce3fcc691606c0f7 100644 (file)
@@ -675,10 +675,10 @@ typedef bool (*OpFlowForKey)(struct flows_stats * flowstats, LiveDevice*dev, voi
                             int mapfd, int cpus_count);
 
 /**
- * Bypassed flows cleaning for IPv4
+ * Bypassed flows iterator for IPv4
  *
  * This function iterates on all the flows of the IPv4 table
- * looking for timeouted flow to delete from the flow table.
+ * running a callback function on each flow.
  */
 static int EBPFForEachFlowV4Table(ThreadVars *th_v, LiveDevice *dev, const char *name,
                                   struct timespec *ctime,
@@ -784,10 +784,10 @@ static int EBPFForEachFlowV4Table(ThreadVars *th_v, LiveDevice *dev, const char
 }
 
 /**
- * Bypassed flows cleaning for IPv6
+ * Bypassed flows iterator for IPv6
  *
  * This function iterates on all the flows of the IPv4 table
- * looking for timeouted flow to delete from the flow table.
+ * running a callback function on each flow.
  */
 static int EBPFForEachFlowV6Table(ThreadVars *th_v,
                                   LiveDevice *dev, const char *name,