Bugzilla – Bug 904
Packet::AddPacketTag is const but RemovePacketTag is not
Last modified: 2011-08-10 13:17:48 EDT
Created attachment 861 [details] patch I am surprised that Packet::AddPacketTag is const but RemovePacketTag is not. This is inconsistent.
ping
why Add is const: allows you to tag packets even from trace callbacks that give you const packets. How ? scary. why Remove is not const: could not figure out how to make it work.