-
-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #671 from zeromq/test [skip ci]
- Loading branch information
Showing
51 changed files
with
492 additions
and
487 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export const ZMQ_CAN_MONITOR = 1 | ||
export const ZMQ_CAN_DISCONNECT = 1 | ||
export const ZMQ_CAN_UNBIND = 1 | ||
export const ZMQ_CAN_SET_CTX = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
export const ZMQ_AFFINITY = 4 | ||
export const ZMQ_IDENTITY = 5 | ||
export const ZMQ_SUBSCRIBE = 6 | ||
export const ZMQ_UNSUBSCRIBE = 7 | ||
export const ZMQ_RATE = 8 | ||
export const ZMQ_RECOVERY_IVL = 9 | ||
export const ZMQ_RECOVERY_IVL_MSEC = 9 | ||
export const ZMQ_SNDBUF = 11 | ||
export const ZMQ_RCVBUF = 12 | ||
export const ZMQ_RCVMORE = 13 | ||
export const ZMQ_FD = 14 | ||
export const ZMQ_EVENTS = 15 | ||
export const ZMQ_TYPE = 16 | ||
export const ZMQ_LINGER = 17 | ||
export const ZMQ_RECONNECT_IVL = 18 | ||
export const ZMQ_BACKLOG = 19 | ||
export const ZMQ_RECONNECT_IVL_MAX = 21 | ||
export const ZMQ_MAXMSGSIZE = 22 | ||
export const ZMQ_SNDHWM = 23 | ||
export const ZMQ_RCVHWM = 24 | ||
export const ZMQ_MULTICAST_HOPS = 25 | ||
export const ZMQ_RCVTIMEO = 27 | ||
export const ZMQ_SNDTIMEO = 28 | ||
export const ZMQ_IPV4ONLY = 31 | ||
export const ZMQ_LAST_ENDPOINT = 32 | ||
export const ZMQ_ROUTER_MANDATORY = 33 | ||
export const ZMQ_TCP_KEEPALIVE = 34 | ||
export const ZMQ_TCP_KEEPALIVE_CNT = 35 | ||
export const ZMQ_TCP_KEEPALIVE_IDLE = 36 | ||
export const ZMQ_TCP_KEEPALIVE_INTVL = 37 | ||
export const ZMQ_TCP_ACCEPT_FILTER = 38 | ||
export const ZMQ_DELAY_ATTACH_ON_CONNECT = 39 | ||
export const ZMQ_XPUB_VERBOSE = 40 | ||
export const ZMQ_ROUTER_RAW = 41 | ||
export const ZMQ_IPV6 = 42 | ||
export const ZMQ_MECHANISM = 43 | ||
export const ZMQ_PLAIN_SERVER = 44 | ||
export const ZMQ_PLAIN_USERNAME = 45 | ||
export const ZMQ_PLAIN_PASSWORD = 46 | ||
export const ZMQ_CURVE_SERVER = 47 | ||
export const ZMQ_CURVE_PUBLICKEY = 48 | ||
export const ZMQ_CURVE_SECRETKEY = 49 | ||
export const ZMQ_CURVE_SERVERKEY = 50 | ||
export const ZMQ_ZAP_DOMAIN = 55 | ||
export const ZMQ_HEARTBEAT_IVL = 75 | ||
export const ZMQ_HEARTBEAT_TTL = 76 | ||
export const ZMQ_HEARTBEAT_TIMEOUT = 77 | ||
export const ZMQ_CONNECT_TIMEOUT = 79 | ||
export const ZMQ_IO_THREADS = 1 | ||
export const ZMQ_MAX_SOCKETS = 2 | ||
export const ZMQ_ROUTER_HANDOVER = 56 |
Oops, something went wrong.