October 19, 2011
Java UDP Pinger Lab
Computer / 컴퓨터Programming / 프로그래밍자바로 만든 UDP Ping 프로그램이다. 서버를 실행할 때 포트번호를 임의로 적어주면 된다. 예) javac PingServer.java && java PingServer localhost 1024 클라이언트의 실행법은 서버의 IP와 포트번호를 적으면 된다. 예) javac PingClient.java && java PingClient localhost 1024 서버의 코드는 Computer Networking, Kurose and Ross, 5th edition에서 작성된 그대로다. Programming Assignment 3: UDP Pinger Lab In this lab, you will study a simple Internet ping server written in the Java language, and implement a corresponding client. The functionality provided by these programs are similar to the standard ping programs available in modern operating […]
Recent Comments