am 2b4cc739: DO NOT MERGE: Support translating fragmented packets.

* commit '2b4cc7393268622ac3de071435a6e4ab857342df':
  DO NOT MERGE: Support translating fragmented packets.
diff --git a/translate.h b/translate.h
index ab20a55..0b97a26 100644
--- a/translate.h
+++ b/translate.h
@@ -72,6 +72,11 @@
                               const struct iphdr *old_header);
 uint8_t parse_frag_header(const struct ip6_frag *frag_hdr, struct iphdr *ip_targ);
 
+// Deal with fragmented packets.
+size_t maybe_fill_frag_header(struct ip6_frag *frag_hdr, struct ip6_hdr *ip6_targ,
+                              const struct iphdr *old_header);
+uint8_t parse_frag_header(const struct ip6_frag *frag_hdr, struct iphdr *ip_targ);
+
 // Translate ICMP packets.
 int icmp_to_icmp6(clat_packet out, int pos, const struct icmphdr *icmp, uint32_t checksum,
                   const uint8_t *payload, size_t payload_size);