Package apple.network.enums
Class nw_ws_response_status_t
- java.lang.Object
-
- apple.network.enums.nw_ws_response_status_t
-
public final class nw_ws_response_status_t extends java.lang.Object[@typedef] nw_ws_response_status_t The status of a WebSocket server's response to a client's request to connect.
-
-
Field Summary
Fields Modifier and Type Field Description static intnw_ws_response_status_accept[@const] nw_ws_response_status_accept Accept the request to connect.static intnw_ws_response_status_invalid[@const] nw_ws_response_status_invalid The response is invalid.static intnw_ws_response_status_reject[@const] nw_ws_response_status_accept Reject the request to connect.
-
-
-
Field Detail
-
nw_ws_response_status_invalid
public static final int nw_ws_response_status_invalid
[@const] nw_ws_response_status_invalid The response is invalid. This should be treated as an unexpected value.- See Also:
- Constant Field Values
-
nw_ws_response_status_accept
public static final int nw_ws_response_status_accept
[@const] nw_ws_response_status_accept Accept the request to connect. The WebSocket connection will begin framing data.- See Also:
- Constant Field Values
-
nw_ws_response_status_reject
public static final int nw_ws_response_status_reject
[@const] nw_ws_response_status_accept Reject the request to connect. The WebSocket connection will be closed.- See Also:
- Constant Field Values
-
-