Game DevTip/NetWork1 1. 네트워크 : UDP 서버, 클라 채팅프로그램 서버 구현 : UDPServer.csusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Net;using System.Net.Sockets;namespace UDP_Server1{ class Program { const int SERVERPORT = 9000; const int BUFSIZE = 512; static void Main(string[] args) { int retval; Socket sock = null; .. 2025. 3. 14. 이전 1 다음