Network
.connectionTesterIP
Manual
Reference
Scripting
Scripting
>
Runtime Classes
>
Network
Network
.connectionTesterIP
Menu
Overview
Runtime Classes
Attributes
Enumerations
Editor Classes
Enumerations
History
Index
Network
All Members
Messages Sent
OnConnectedToServer
OnDisconnectedFromServer
OnFailedToConnect
OnFailedToConnectToMasterServer
OnNetworkInstantiate
OnPlayerConnected
OnPlayerDisconnected
OnSerializeNetworkView
OnServerInitialized
Class Variables
connections
connectionTesterIP
connectionTesterPort
incomingPassword
isClient
isMessageQueueRunning
isServer
logLevel
maxConnections
minimumAllocatableViewIDs
natFacilitatorIP
natFacilitatorPort
peerType
player
proxyIP
proxyPassword
proxyPort
sendRate
time
useProxy
Class Functions
AllocateViewID
CloseConnection
Connect
Destroy
DestroyPlayerObjects
Disconnect
GetAveragePing
GetLastPing
HavePublicAddress
InitializeSecurity
InitializeServer
Instantiate
RemoveRPCs
RemoveRPCsInGroup
SetLevelPrefix
SetReceivingEnabled
SetSendingEnabled
TestConnection
TestConnectionNAT
static
var
connectionTesterIP :
string
Description
The IP address of the connection tester used in
Network.TestConnection
.
JavaScripts
JavaScript
C#
Boo
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