• This project
    • Loading...
  • Sign in

I_Jemin / dotnet-Network-Programming-with-Unity

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • dotnet-Network-Programming-with-Unity
  • Basic Network Library
  • Assets
  • Scripts
  • TransportTCP.cs
  • I_Jemin's avatar
    New Proejct: Basic Network Library · 9f699db9 ...
    9f699db9 Browse Files
    Add PacketQeue for fluent packet stacking
    I_Jemin authored 2018-01-28 23:53:30 +0900
TransportTCP.cs 247 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
using UnityEngine;
using System.Collections;
using System.Net;
using System.Net.Sockets;
using System.Threading;


public class TransportTCP : MonoBehaviour {

	// 소켓 액세스

	// 리스너 소켓
	private Socket m_listener = null;

	


}