Follow along with the video below to see how to install our site as a web app on your home screen.
Note: this_feature_currently_requires_accessing_site_using_safari
int __declspec(naked) Blah(){
_asm{
xor eax, eax [COLOR=Green]//return 0[/COLOR]
retn
}
}
xor eax, eax
retn
private bool PortExists(IPAddress ip, int port)
{
try
{
TcpClient client = new TcpClient( ip.ToString(), port );
if ( client.Connected )
{
client.Close();
return true;
}
else
return false;
}
catch ( System.Exception )
{
return false;
}
}