Loop filter variables.
| 1026 | |
| 1027 | |
| 1028 | class NTPInfoLoop(Packet): |
| 1029 | """ |
| 1030 | Loop filter variables. |
| 1031 | """ |
| 1032 | |
| 1033 | name = "info_loop" |
| 1034 | fields_desc = [ |
| 1035 | TimeStampField("last_offset", 0), |
| 1036 | TimeStampField("drift_comp", 0), |
| 1037 | IntField("compliance", 0), |
| 1038 | IntField("watchdog_timer", 0) |
| 1039 | ] |
| 1040 | |
| 1041 | |
| 1042 | class NTPInfoSys(Packet): |
nothing calls this directly
no test coverage detected
searching dependent graphs…