(msg)
| 1917 | elif starvation >= _DHCP_STARV_MIN_CLIENTS: |
| 1918 | verdict = 'starvation' |
| 1919 | if not packets: |
| 1920 | reasons.append("no DHCP seen on the wire during the window — quiet segment, " |
| 1921 | "or the box may not actually be inline (bridge the two NICs)") |
| 1922 | |
| 1923 | return { |
| 1924 | 'success': True, 'verdict': verdict, |
| 1925 | 'trusted': trusted, 'untrusted': untrusted, |
| 1926 | 'packets': len(packets), |
| 1927 | 'servers': [{'server': sid, 'port': i['port'], 'trusted': i['trusted'], |
no test coverage detected