mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-07-02 01:27:27 -04:00
include docker repos
... skip emobility since it is a dev repo
This commit is contained in:
34
docker/p0f/fp_mtu.h
Normal file
34
docker/p0f/fp_mtu.h
Normal file
@ -0,0 +1,34 @@
|
||||
/*
|
||||
p0f - MTU matching
|
||||
------------------
|
||||
|
||||
Copyright (C) 2012 by Michal Zalewski <lcamtuf@coredump.cx>
|
||||
|
||||
Distributed under the terms and conditions of GNU LGPL.
|
||||
|
||||
*/
|
||||
|
||||
#ifndef _HAVE_FP_MTU_H
|
||||
#define _HAVE_FP_MTU_H
|
||||
|
||||
#include "types.h"
|
||||
|
||||
/* Record for a TCP signature read from p0f.fp: */
|
||||
|
||||
struct mtu_sig_record {
|
||||
|
||||
u8* name;
|
||||
u16 mtu;
|
||||
|
||||
};
|
||||
|
||||
#include "process.h"
|
||||
|
||||
struct packet_data;
|
||||
struct packet_flow;
|
||||
|
||||
void mtu_register_sig(u8* name, u8* val, u32 line_no);
|
||||
|
||||
void fingerprint_mtu(u8 to_srv, struct packet_data* pk, struct packet_flow* f);
|
||||
|
||||
#endif /* _HAVE_FP_MTU_H */
|
Reference in New Issue
Block a user