mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-10 20:08:16 +00:00
Add "ast_flags_all" mask (bug #3136)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4543 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -16,6 +16,7 @@
|
|||||||
#include <netdb.h>
|
#include <netdb.h>
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
#include <asterisk/lock.h>
|
#include <asterisk/lock.h>
|
||||||
|
#include <limits.h>
|
||||||
|
|
||||||
#define ast_test_flag(p,flag) ((p)->flags & (flag))
|
#define ast_test_flag(p,flag) ((p)->flags & (flag))
|
||||||
|
|
||||||
@@ -28,6 +29,8 @@
|
|||||||
|
|
||||||
#define ast_set2_flag(p,value,flag) ((value) ? ast_set_flag(p,flag) : ast_clear_flag(p,flag))
|
#define ast_set2_flag(p,value,flag) ((value) ? ast_set_flag(p,flag) : ast_clear_flag(p,flag))
|
||||||
|
|
||||||
|
#define AST_FLAGS_ALL UINT_MAX
|
||||||
|
|
||||||
static inline int ast_strlen_zero(const char *s)
|
static inline int ast_strlen_zero(const char *s)
|
||||||
{
|
{
|
||||||
return (*s == '\0');
|
return (*s == '\0');
|
||||||
@@ -39,7 +42,7 @@ struct ast_hostent {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct ast_flags {
|
struct ast_flags {
|
||||||
int flags;
|
unsigned int flags;
|
||||||
};
|
};
|
||||||
|
|
||||||
extern char *ast_strip(char *buf);
|
extern char *ast_strip(char *buf);
|
||||||
|
|||||||
Reference in New Issue
Block a user