Network.connectionTesterIP Manual     Reference     Scripting  
Scripting > Runtime Classes > Network
Network.connectionTesterIP

static var connectionTesterIP : String

Description

The IP address of the connection tester used in Network.TestConnection.

JavaScript
function ResetIP() {
Network.connectionTesterIP = "127.0.0.1";
Network.connectionTesterPort = 10000;
}

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void ResetIP() {
Network.connectionTesterIP = "127.0.0.1";
Network.connectionTesterPort = 10000;
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def ResetIP():
Network.connectionTesterIP = '127.0.0.1'
Network.connectionTesterPort = 10000