relay.h 189 B

12345678910
  1. #ifndef _RELAY_H_
  2. #define _RELAY_H_
  3. #include "flow.h"
  4. #include <stdint.h>
  5. int replace_packet(flow *f, uint8_t *packet);
  6. int read_header(flow *f, uint8_t *packet);
  7. #endif /* _RELAY_H_ */