#ifndef CLICK_SETIPCHECKSUM_HH #define CLICK_SETIPCHECKSUM_HH #include #include CLICK_DECLS /* * =c * SetIPChecksum() * =s ip * sets IP packets' checksums * =d * Expects an IP packet as input. * Calculates the IP header's checksum and sets the checksum header field. * * You will not normally need SetIPChecksum. Most elements that modify an IP * header, like DecIPTTL, SetIPDSCP, and IPRewriter, already update the * checksum incrementally. * * =a CheckIPHeader, DecIPTTL, SetIPDSCP, IPRewriter */ class SetIPChecksum : public Element { public: SetIPChecksum(); ~SetIPChecksum(); const char *class_name() const { return "SetIPChecksum"; } const char *port_count() const { return PORTS_1_1; } const char *processing() const { return AGNOSTIC; } Packet *simple_action(Packet *); }; CLICK_ENDDECLS #endif