Exemplo n.º 1
0
    private void Start()
    {
        mSocketDebug           = GetComponent <SocketDebug>();
        mSocket                = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
        mSocket.SendBufferSize = 8192;

        //StartCoroutine( BatchPOST()); - disabled while this crash callstack investigated. https://ptowndev.slack.com/files/rajantande/F0C7CBYA3/screen_shot_2015-10-09_at_16.20.55.png
    }
Exemplo n.º 2
0
 private void Start()
 {
     mSocketDebug = GetComponent <SocketDebug>();
     if (Host(kPort))
     {
         mSocketDebug.DebugLog("lServer: started");
     }
 }
Exemplo n.º 3
0
 private void Start()
 {
     mSocketDebug = GetComponent<SocketDebug>();
     if (Host(kPort))
     {
         mSocketDebug.DebugLog("lServer: started");
     }
 }
Exemplo n.º 4
0
    private void Start()
    {
        mSocketDebug = GetComponent<SocketDebug>();
        mSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
        mSocket.SendBufferSize = 8192;

        //StartCoroutine( BatchPOST()); - disabled while this crash callstack investigated. https://ptowndev.slack.com/files/rajantande/F0C7CBYA3/screen_shot_2015-10-09_at_16.20.55.png
    }