File tree 3 files changed +16
-4
lines changed
3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,8 @@ cc_library(
37
37
cc_library (
38
38
name = "libzmq" ,
39
39
srcs = [
40
+ "external/sha1/sha1.c" ,
41
+ "external/sha1/sha1.h" ,
40
42
"src/address.cpp" ,
41
43
"src/address.hpp" ,
42
44
"src/array.hpp" ,
@@ -267,9 +269,19 @@ cc_library(
267
269
"src/vmci_listener.hpp" ,
268
270
"src/windows.hpp" ,
269
271
"src/wire.hpp" ,
272
+ "src/ws_address.cpp" ,
270
273
"src/ws_address.hpp" ,
274
+ "src/ws_connecter.cpp" ,
271
275
"src/ws_connecter.hpp" ,
276
+ "src/ws_decoder.cpp" ,
277
+ "src/ws_decoder.hpp" ,
278
+ "src/ws_encoder.cpp" ,
279
+ "src/ws_encoder.hpp" ,
280
+ "src/ws_engine.cpp" ,
281
+ "src/ws_engine.hpp" ,
282
+ "src/ws_listener.cpp" ,
272
283
"src/ws_listener.hpp" ,
284
+ "src/ws_protocol.hpp" ,
273
285
"src/xpub.cpp" ,
274
286
"src/xpub.hpp" ,
275
287
"src/xsub.cpp" ,
Original file line number Diff line number Diff line change 64
64
65
65
#define ZMQ_USE_BUILTIN_SHA1
66
66
/* #undef ZMQ_USE_NSS */
67
- # define ZMQ_HAVE_WS
67
+ /* #undef ZMQ_HAVE_WS */
68
68
/* #undef ZMQ_HAVE_WSS */
69
69
#define ZMQ_HAVE_TIPC
70
70
79
79
/* #undef SODIUM_STATIC */
80
80
/* #undef HAVE_LIBGSSAPI_KRB5 */
81
81
/* #undef ZMQ_USE_GNUTLS */
82
- # define ZMQ_USE_RADIX_TREE
82
+ /* #undef ZMQ_USE_RADIX_TREE */
83
83
#define HAVE_IF_NAMETOINDEX
84
84
85
85
#ifdef _AIX
Original file line number Diff line number Diff line change 64
64
65
65
#define ZMQ_USE_BUILTIN_SHA1
66
66
/* #undef ZMQ_USE_NSS */
67
- # define ZMQ_HAVE_WS
67
+ /* #undef ZMQ_HAVE_WS */
68
68
/* #undef ZMQ_HAVE_WSS */
69
69
/* #undef ZMQ_HAVE_TIPC */
70
70
79
79
/* #undef SODIUM_STATIC */
80
80
/* #undef HAVE_LIBGSSAPI_KRB5 */
81
81
/* #undef ZMQ_USE_GNUTLS */
82
- # define ZMQ_USE_RADIX_TREE
82
+ /* #undef ZMQ_USE_RADIX_TREE */
83
83
#define HAVE_IF_NAMETOINDEX
84
84
85
85
#ifdef _AIX
You can’t perform that action at this time.
0 commit comments