<!--
	Types are defined as
	TCP Ping = 1
	UDP Ping = 2
	HTTP Ping = 3
	SNMP Ping = 4 (not implemented yet)
-->
<pings number="0">
	<!-- TCP Ping -->
	<!--
		message and response are optional. this is how the ping operates depending on which are given:
		
		Neither given:
			Ping will attempt to open a socket to the IP and Port and just check if the connection was succesful
		
		Only Message Given:
			Ping will attempt to open a socket to the IP and Port, send the message, and consider any response succesful
			
		Both Given:
			Ping will attempt to open a socket to the IP and Port, send the message, and only consider responses containing
			the expected response as valid
	-->
</pings>