Changeset caac052 in mainline for uspace/app/pcapcat/linktype_parser.h
- Timestamp:
- 2024-12-22T16:47:50Z (14 months ago)
- Children:
- 46e2152
- Parents:
- 373dded
- File:
-
- 1 edited
-
uspace/app/pcapcat/linktype_parser.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/pcapcat/linktype_parser.h
r373dded rcaac052 27 27 */ 28 28 29 #include <stdint.h> 30 #include <stdio.h> 29 /** @addtogroup pcapcat 30 * @{ 31 */ 32 /** @file Structure for parsing PCAP file. 33 */ 34 31 35 #include <stdlib.h> 32 #include <time.h>33 36 #include <stdbool.h> 34 #include <errno.h>35 37 #include <str.h> 36 #include <io/log.h>37 38 #include <pcap.h> 38 39 39 40 40 typedef struct { … … 43 43 void (*parse_packets)(FILE *, int, bool); 44 44 } linktype_parser_t; 45 46 /** @} 47 */
Note:
See TracChangeset
for help on using the changeset viewer.
