masscan-mark-ii/src/masscan-status.h

30 lines
400 B
C
Raw Permalink Normal View History

2024-02-26 08:35:54 -08:00
#ifndef MASSCAN_STATUS_H
#define MASSCAN_STATUS_H
#if 0
enum PortStatus {
Port_Unknown,
Port_Open,
Port_Closed,
Port_IcmpEchoResponse,
Port_UdpOpen,
Port_UdpClosed,
Port_SctpOpen,
Port_SctpClosed,
Port_ArpOpen,
};
#endif
enum PortStatus {
PortStatus_Unknown,
PortStatus_Open,
PortStatus_Closed,
PortStatus_Arp,
PortStatus_Count
};
#endif