socket_write

来自「C实现的MUD,对大家基本入门网络游戏很有帮助!」· 代码 · 共 65 行

TXT
65
字号
     ssssoooocccckkkkeeeetttt____wwwwrrrriiiitttteeee((((3333))))        MMMMuuuuddddOOOOSSSS ((((5555 SSSSeeeepppp 1111999999994444))))         ssssoooocccckkkkeeeetttt____wwwwrrrriiiitttteeee((((3333))))     NNNNAAAAMMMMEEEE          socket_write() - send a message from a socket     SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS          #include <socket_err.h>          int socket_write( int s, mixed message,                            void | string address );     DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN          socket_write() sends a message on a socket s. If the socket          s is of type STREAM or MUD, the socket must already be          connected and the address is not specified. If the socket is          of type DATAGRAM, the address must be specified.  The          address is of the form: "127.0.0.1 23".     RRRREEEETTTTUUUURRRRNNNN VVVVAAAALLLLUUUUEEEESSSS          socket_write() returns:               EESUCCESS on success.               a negative value indicated below on error.     EEEERRRRRRRROOOORRRRSSSS          EEFDRANGE      Descriptor out of range.          EEBADF         Descriptor is invalid.          EESECURITY     Security violation attempted.          EENOADDR       Socket not bound to an address.          EEBADADDR      Problem with address format.          EENOTCONN      Socket not connected.          EEALREADY      Operation already in progress.          EETYPENOTSUPP  Object type not supported.          EEBADDATA      Sending data with too many nested levels.          EESENDTO       Problem with sendto.          EEMODENOTSUPP  Socket mode not supported.          EEWOULDBLOCK   Operation would block.     Page 1                                          (printed 3/16/95)     ssssoooocccckkkkeeeetttt____wwwwrrrriiiitttteeee((((3333))))        MMMMuuuuddddOOOOSSSS ((((5555 SSSSeeeepppp 1111999999994444))))         ssssoooocccckkkkeeeetttt____wwwwrrrriiiitttteeee((((3333))))          EESEND         Problem with send.          EECALLBACK     Wait for callback.     SSSSEEEEEEEE AAAALLLLSSSSOOOO          socket_connect(3), socket_create(3)     Page 2                                          (printed 3/16/95)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?