Skip to content

Commit

Permalink
Merge pull request #341 from network-intelligence/ike-hotfix
Browse files Browse the repository at this point in the history
Replace space with underscore for ike fields
  • Loading branch information
andrewchi authored and GitHub Enterprise committed Dec 12, 2024
2 parents 7dc6cc1 + 8af88c4 commit 03ef809
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libmerc/ike.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ namespace ike {
if (!valid) { return; }
o.print_key_hex("initiator_spi", initiator_spi);
o.print_key_hex("responder_spi", responder_spi);
o.print_key_uint("major version", version.slice<0,4>());
o.print_key_uint("minor version", version.slice<4,8>());
o.print_key_uint("major_version", version.slice<0,4>());
o.print_key_uint("minor_version", version.slice<4,8>());
exchange.write_json(o);
o.print_key_bool("response", flags.bit<2>());
o.print_key_bool("version", flags.bit<3>());
Expand Down

0 comments on commit 03ef809

Please sign in to comment.