Yoshiyuki Kurauchi
Yoshiyuki Kurauchi
FYI #174 partially resolved this.
I'm generally not in favor of using reflection in the packet processing, as there may be a concern in performance. Could you add some benchmarks to show the difference?
## uint32 - [x] AggregatedURRID - [x] AveragingWindow - [x] CumulativeRateRatioMeasurement - [x] CumulativeRateRatioThreshold - [x] DSTTPortNumber - [x] EthernetFilterID - [x] EventQuota - [x] EventThreshold - [ ] FailedRuleID...
Ahah what a trap! 3GPP really likes to annoy us with such things :) Thanks for reporting. I'll check and fix it hopefully in a few days.
Yeah it’d be some unusual work. I have some ideas on how to make it work but didn’t have time to try. Maybe next week I can do.
@oicnysa I've added exceptions for Extension Header Type List in parsing/marshaling common IE structure at b24e7e8033b7306e9edb91a61a86923c137098c4. Though the length field of the structure is still of type `uint16`, it should...
Seems so (and other fields should also be updated). I think we rather want to define a dedicated struct for them to be more kind, like; ```go type PFDContentsFields struct...
I found manual calculation is also used in [examples/dhcprequest.py](https://github.com/kbandla/dpkt/blob/master/examples/dhcprequest.py). We need to be sure of that when addressing this issue.
Did you try: ``` return ':'.join(['%02x' % ord(i) for i in mac]) ``` instead of: ``` return ':'.join(['%02x' % i for i in mac]) ``` at 'File "/pcappy/__init__.py", line 227,...
Why do you think it is necessary?