UDP Ping
1.0.0
UDP를 통한 간단한 C 클라이언트/서버 구현은 대기 시간과 패킷 손실을 계산하는 것을 목표로 합니다. 내가 만드는 미래의 벤치마크에 이것을 사용할 것입니다.
클라이언트( ping
)는 다음 인수를 지원합니다.
--dest -d => The destination host/IP to send to.
--port -p => The destination port.
--timeout -t => How much time to wait after the packet to be sent out before considering it a timeout if it doesn't make it back (in microseconds).
--interval -i => After packet receive, how long to wait in microseconds.
--verbose -v => Verbose mode.
서버( server
)는 다음 인수를 지원합니다.
--port -p => The port to bind to.
--verbose -v => Verbose mode.