GPS_timer 는 크게 서버(PC역할_폼형식)와 클라이언트(단말기역할_콘솔형식)로 나누어져 있습니다. 서버는 단지 출력의 역할을 합니다.
실행시 클라이언트의 편의를 위해 자신의 아이피를 화면에 출력해 줍니다.
using System; using System.Net; using System.Net.Sockets; using System.Text; using System.Collections.Generic; using System.Linq; namespace server { class Program { static void Main(string[] args) { string st_message; IPHostEntry IPHost = Dns.GetHostByName(Dns.GetHostName()); IPAddress ip = IPAddress.Parse(IPHost.AddressList[0].ToString()); IPEndPoint endPoint = new IPEndPoint(ip, 8000);//인자값 : IPAddress,포트번호
Console.WriteLine("클라이언트의 요청을 기다리고 있습니다 (서버주소 : " + IPHost.AddressList[0].ToString()+")"); while (true) { //////////////////////////////////////////////////////////////////////////수신부 Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); socket.Bind(endPoint); socket.Listen(10); Socket clientSocket = socket.Accept(); Console.WriteLine("클라이언트로부터 데이터를 수신하였습니다."); byte[] receiveBuffer = new byte[512]; try { int length = clientSocket.Receive(receiveBuffer, receiveBuffer.Length, SocketFlags.None); string result = Encoding.UTF8.GetString(receiveBuffer, 0, length); Console.WriteLine("받은 데이터 : " + result); socket.Close(); } catch (SocketException e) { } } } } }
'2_ 바삭바삭 프로그래밍 > C# and Visual C++' 카테고리의 다른 글
MFC - 메세지맵을 사용하지 않고 WM_메세지 처리 (1) | 2011.03.24 |
---|---|
C/C++ 코드를 C# 에서 사용하는 방법(C++/CLI) (3) | 2011.02.23 |
C# - GPS_timer(3) : Client (1) | 2010.07.23 |
C# - 프로그램 종료하기 (0) | 2010.05.06 |
C# 컬렉션기본 스택(Stack), 큐(Queue) (0) | 2010.05.03 |