Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -793,6 +793,7 @@ impl Socket {
(is_gssapi_plaintext, set_gssapi_plaintext) => ZMQ_GSSAPI_PLAINTEXT as bool,
(_, set_req_relaxed) => ZMQ_REQ_RELAXED as bool,
(_, set_req_correlate) => ZMQ_REQ_CORRELATE as bool,
(is_invert_matching, set_invert_matching) => ZMQ_INVERT_MATCHING as bool,
}

/// Return the type of this socket.
Expand Down Expand Up @@ -990,6 +991,7 @@ impl Socket {
(_, set_curve_serverkey) => ZMQ_CURVE_SERVERKEY as &[u8],
(_, set_gssapi_principal) => ZMQ_GSSAPI_PRINCIPAL as &str,
(_, set_gssapi_service_principal) => ZMQ_GSSAPI_SERVICE_PRINCIPAL as &str,

}

/// Create a `PollItem` from the socket.
Expand Down