Subversion Repositories HelenOS

Rev

Rev 4720 | Rev 4728 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4720 Rev 4726
Line 112... Line 112...
112
 
112
 
113
/** Closes the socket.
113
/** Closes the socket.
114
 *  @param socket_id Socket identifier. Input parameter.
114
 *  @param socket_id Socket identifier. Input parameter.
115
 *  @returns EOK on success.
115
 *  @returns EOK on success.
116
 *  @returns ENOTSOCK if the socket is not found.
116
 *  @returns ENOTSOCK if the socket is not found.
-
 
117
 *  @returns EINPROGRESS if there is another blocking function in progress.
117
 *  @returns Other error codes as defined for the NET_SOCKET_CLOSE message.
118
 *  @returns Other error codes as defined for the NET_SOCKET_CLOSE message.
118
 */
119
 */
119
int closesocket( int socket_id );
120
int closesocket( int socket_id );
120
 
121
 
121
/** Sends data via the socket.
122
/** Sends data via the socket.