?? readme
字號:
UDP client and server code. The client sends a single 32bit integer to the server without convertingto network byte order.The server looks for incoming datagrams, and looks in each one fora 32 bit integer, which it prints out (without converting fromnetwork byte order).The point is: 1. sending binary data 2. watch things screw up if the server and client don't use the same representation for integers.To see the Network byte order problem, run one of the programs on aPC (Linux, BSD) and the other on a Sun.The client command line looks like this:client foo.cs.rpi.edu 2030 8765The first number is the server port number, the last number is theinteger that will be sent by the client to the server. If all goes well,the server will print out this number.Questions should be sent to netprog@cs.rpi.edu
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -