Skip to content

Commit

Permalink
Make sure files end in newlines.
Browse files Browse the repository at this point in the history
  • Loading branch information
bbannier committed Nov 24, 2021
1 parent 56d11ee commit cf50853
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion analyzer/CHANGES
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
v0.2.0 - Added raw IPSec parsing via Zeek's Packet Analyzers.
v0.1.0 - Initial checkin.
v0.1.0 - Initial checkin.
2 changes: 1 addition & 1 deletion analyzer/analyzer.spicy
Original file line number Diff line number Diff line change
Expand Up @@ -652,4 +652,4 @@ public type IPSecAH = unit {
50 -> esp: IPSecESP_IP &size=self.next_len if (self.next_len > 0);
* -> payload: bytes &size=self.next_len if (self.next_len > 0);
};
};
};
2 changes: 1 addition & 1 deletion tests/analyzer/ipsec_ah.zeek
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
@load analyzer

event IPSEC::ah_message_over_ip(p: raw_pkt_hdr, spi: count, seq: count, payload_len: count) { print cat("ah_message_over_ip ", p, spi, seq, payload_len); }
event IPSEC::esp_message_over_ip(p: raw_pkt_hdr, spi: count, seq: count, payload_len: count) { print cat("esp_message_over_ip ", p, spi, seq, payload_len); }
event IPSEC::esp_message_over_ip(p: raw_pkt_hdr, spi: count, seq: count, payload_len: count) { print cat("esp_message_over_ip ", p, spi, seq, payload_len); }

0 comments on commit cf50853

Please sign in to comment.