?? connecttcp.c
字號:
/* connectTCP.c - connectTCP */int connectsock(const char *host, const char *service, const char *transport);/*------------------------------------------------------------------------ * connectTCP - connect to a specified TCP service on a specified host *------------------------------------------------------------------------ */intconnectTCP(const char *host, const char *service )/* * Arguments: * host - name of host to which connection is desired * service - service associated with the desired port */{ return connectsock( host, service, "tcp");}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -