2014-05-29 00:25:28 +08:00
|
|
|
#ifndef qamqp_global_h__
|
|
|
|
|
#define qamqp_global_h__
|
|
|
|
|
|
|
|
|
|
#define AMQPSCHEME "amqp"
|
|
|
|
|
#define AMQPSSCHEME "amqps"
|
|
|
|
|
#define AMQPPORT 5672
|
|
|
|
|
#define AMQPHOST "localhost"
|
|
|
|
|
#define AMQPVHOST "/"
|
|
|
|
|
#define AMQPLOGIN "guest"
|
|
|
|
|
#define AMQPPSWD "guest"
|
|
|
|
|
#define FRAME_MAX 131072
|
|
|
|
|
|
2014-05-29 03:33:15 +08:00
|
|
|
#define QAMQP_VERSION "0.3.0"
|
2014-05-29 00:25:28 +08:00
|
|
|
|
|
|
|
|
#define AMQP_CONNECTION_FORCED 320
|
|
|
|
|
|
2014-05-29 03:33:15 +08:00
|
|
|
#ifdef QAMQP_SHARED
|
|
|
|
|
# ifdef QAMQP_BUILD
|
|
|
|
|
# define QAMQP_EXPORT Q_DECL_EXPORT
|
|
|
|
|
# else
|
|
|
|
|
# define QAMQP_EXPORT Q_DECL_IMPORT
|
|
|
|
|
# endif
|
|
|
|
|
#else
|
|
|
|
|
# define QAMQP_EXPORT
|
|
|
|
|
#endif
|
|
|
|
|
|
2014-05-29 00:25:28 +08:00
|
|
|
#endif // qamqp_global_h__
|