123456789101112 |
- #ifndef _RELAY_H_
- #define _RELAY_H_
- #include "flow.h"
- #include <stdint.h>
- int replace_packet(flow *f, struct packet_info *info);
- int replace_contents(flow *f, int32_t offset, struct packet_info *info);
- int read_header(flow *f, struct packet_info *info);
- uint16_t tcp_checksum(struct packet_info *info);
- #endif /* _RELAY_H_ */
|