[asterisk-bugs] [Asterisk 0018272]: [patch] distributed device state does not work
Asterisk Bug Tracker
noreply at bugs.digium.com
Thu Nov 18 14:10:48 CST 2010
The following issue has been ASSIGNED.
======================================================================
https://issues.asterisk.org/view.php?id=18272
======================================================================
Reported By: klaus3000
Assigned To: Marquis
======================================================================
Project: Asterisk
Issue ID: 18272
Category: Resources/res_jabber
Reproducibility: always
Severity: major
Priority: normal
Status: ready for review
Asterisk Version: 1.8.0
JIRA:
Regression: No
Reviewboard Link:
SVN Branch (only for SVN checkouts, not tarball releases): N/A
SVN Revision (number only!):
Request Review:
======================================================================
Date Submitted: 2010-11-07 14:00 CST
Last Modified: 2010-11-18 14:10 CST
======================================================================
Summary: [patch] distributed device state does not work
Description:
from res_jabber.c:
/*! \brief Global flags, initialized to default values */
static struct ast_flags globalflags = { AJI_AUTOREGISTER | AJI_AUTOACCEPT
};
/*! \brief PubSub flags, initialized to default values */
static struct ast_flags pubsubflags = { AJI_AUTOREGISTER };
As you see, pubsubflags is initialized to AJI_AUTOREGISTER - but
AJI_AUTOREGISTER is meant for global flags.
from jabber.h:
enum {
AJI_AUTOPRUNE = (1 << 0),
AJI_AUTOREGISTER = (1 << 1),
AJI_AUTOACCEPT = (1 << 2),
};
enum {
AJI_XEP0248 = (1 << 0),
AJI_PUBSUB = (1 << 1),
AJI_PUBSUB_AUTOCREATE = (1 << 2),
};
As you see AJI_AUTOREGISTER==AJI_PUBSUB. Thus, res_jabber always thinks
that there is already a connection with pubsub enabled and thus does not
allow any other connection to enable pubsub.
======================================================================
----------------------------------------------------------------------
(0128961) lmadsen (administrator) - 2010-11-18 14:10
https://issues.asterisk.org/view.php?id=18272#c128961
----------------------------------------------------------------------
Marquis: Do you have commit access? Perhaps you could just commit this if
you think it is right?
Issue History
Date Modified Username Field Change
======================================================================
2010-11-18 14:10 lmadsen Note Added: 0128961
2010-11-18 14:10 lmadsen Assigned To => Marquis
======================================================================
More information about the asterisk-bugs
mailing list