My wifi address is: a8:8e:24:a3:f9:6f
Obviously, My ipaddress is ipv6.
In this case,my code cannot work,the code is:
WWW www=new WWW(" http://i4center-ws.foxugame.com:8090/serverlist?format=json&ver=1.2");
StartCoroutine(WaitForComplete(www));
the coroutine is:
IEnumerator<WWW>WaitForComplete(WWWwww)
{
yield return www;
if(www.isDone)
{
Debug.Log("www.text is:"+www.text);
......
}}
The...
Can WWW support IPV6?
Obviously, My ipaddress is ipv6.
In this case,my code cannot work,the code is:
WWW www=new WWW(" http://i4center-ws.foxugame.com:8090/serverlist?format=json&ver=1.2");
StartCoroutine(WaitForComplete(www));
the coroutine is:
IEnumerator<WWW>WaitForComplete(WWWwww)
{
yield return www;
if(www.isDone)
{
Debug.Log("www.text is:"+www.text);
......
}}
The...
Can WWW support IPV6?