Skip to content

Commit

Permalink
Updating ZContextOption
Browse files Browse the repository at this point in the history
  • Loading branch information
metadings committed Aug 20, 2015
1 parent 2ac22ef commit 5315a81
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions ZContextOption.cs
Expand Up @@ -8,8 +8,11 @@ namespace ZeroMQ
{
public enum ZContextOption : int
{
IO_THREADS,
MAX_SOCKETS,
IPV6 // in zmq.h ZMQ_IPV6 is in the socket options section
IO_THREADS = 1,
MAX_SOCKETS = 2,
SOCKET_LIMIT = 3,
THREAD_PRIORITY = 3,
THREAD_SCHED_POLICY = 4,
IPV6 = 42 // in zmq.h ZMQ_IPV6 is in the socket options section
}
}

0 comments on commit 5315a81

Please sign in to comment.