Is there a way to get the packet's layer field value information ?
(i.e. The string info displayed to the right when printing the packet layer)
like the lines below:
Protocol discriminator: Mobility Management message
Skip Indicator: No indication of selected PLMN
e.g.
packets = pyshark.FileCapture(...)
print(packet[0]['IP']):
.... 0101 = Protocol discriminator: Mobility Management messages (0x5)
0000 .... = Skip Indicator: No indication of selected PLMN (0)
...
...
...