Codebase list czmq / b536141
Drop symbols leak patch, fixed upstream Luca Boccassi 7 years ago
2 changed file(s) with 0 addition(s) and 30 deletion(s). Raw diff Collapse all Expand all
+0
-29
debian/patches/0004-Fix-Symbols-Leak.patch less more
0 --- a/src/zsock.c
1 +++ b/src/zsock.c
2 @@ -49,6 +49,26 @@ struct _zsock_t {
3 uint32_t routing_id; // Routing ID for server sockets
4 };
5
6 +#ifndef CZMQ_BUILD_DRAFT_API
7 +CZMQ_PRIVATE zsock_t *
8 + zsock_new_server_checked (const char *endpoint, const char *filename, size_t line_nbr);
9 +
10 +CZMQ_PRIVATE zsock_t *
11 + zsock_new_client_checked (const char *endpoint, const char *filename, size_t line_nbr);
12 +
13 +CZMQ_PRIVATE zsock_t *
14 + zsock_new_radio_checked (const char *endpoint, const char *filename, size_t line_nbr);
15 +
16 +CZMQ_PRIVATE zsock_t *
17 + zsock_new_dish_checked (const char *endpoint, const char *filename, size_t line_nbr);
18 +
19 +CZMQ_PRIVATE zsock_t *
20 + zsock_new_gather_checked (const char *endpoint, const char *filename, size_t line_nbr);
21 +
22 +CZMQ_PRIVATE zsock_t *
23 + zsock_new_scatter_checked (const char *endpoint, const char *filename, size_t line_nbr);
24 +#endif // CZMQ_BUILD_DRAFT_API
25 +
26
27 // --------------------------------------------------------------------------
28 // Create a new socket. This macro passes the caller source and line
0 0004-Fix-Symbols-Leak.patch