mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-08-21 05:43:59 -07:00
Beginning CMake configuration for ZT
Only tested on Windows so far
This commit is contained in:
parent
af5d3a7f0b
commit
0b3b5f6174
111 changed files with 19586 additions and 36 deletions
17
ext/librabbitmq/coverity/model.c
Normal file
17
ext/librabbitmq/coverity/model.c
Normal file
|
@ -0,0 +1,17 @@
|
|||
/* Functions to help coverity do static analysis on rabbitmq-c */
|
||||
|
||||
typedef struct {
|
||||
} amqp_rpc_reply_t;
|
||||
|
||||
/* librabbitmq/amqp_private.h */
|
||||
void amqp_abort(const char* fmt, ...) { __coverity_panic__(); }
|
||||
|
||||
/* tools/common.h */
|
||||
void die(const char* fmt, ...) { __coverity_panic__(); }
|
||||
void die_errno(int err, const char* fmt, ...) { __coverity_panic__(); }
|
||||
void die_amqp_error(int err, const char* fmt, ...) { __coverity_panic__(); }
|
||||
void die_rpc(amqp_rpc_reply_t r, const char* fmt, ...) { __coverity_panic__(); }
|
||||
|
||||
/* examples/utils.h */
|
||||
void die_on_amqp_error(amqp_rpc_reply_t* r) { __coverity_panic__(); }
|
||||
void die_on_error(int r) { __coverity_panic__(); }
|
Loading…
Add table
Add a link
Reference in a new issue