#include "asterisk/astobj.h"
#include "asterisk/abstract_jb.h"
#include "asterisk/threadstorage.h"
+#include "asterisk/devicestate.h"
/*************************************
* Skinny/Asterisk Protocol Settings *
} *sessions = NULL;
static struct ast_channel *skinny_request(const char *type, int format, void *data, int *cause);
+static int skinny_devicestate(void *data);
static int skinny_call(struct ast_channel *ast, char *dest, int timeout);
static int skinny_hangup(struct ast_channel *ast);
static int skinny_answer(struct ast_channel *ast);
.capabilities = ((AST_FORMAT_MAX_AUDIO << 1) - 1),
.properties = AST_CHAN_TP_WANTSJITTER | AST_CHAN_TP_CREATESJITTER,
.requester = skinny_request,
+ .devicestate = skinny_devicestate,
.call = skinny_call,
.hangup = skinny_hangup,
.answer = skinny_answer,
return tmpc;
}
+static int skinny_devicestate(void *data)
+{
+ struct skinny_line *l;
+ struct skinny_subchannel *sub;
+ char *tmp;
+ int res = AST_DEVICE_UNKNOWN;
+
+ tmp = ast_strdupa(data);
+
+ l = find_line_by_name(tmp);
+
+ if (!l)
+ res = AST_DEVICE_INVALID;
+ else if (!l->parent)
+ res = AST_DEVICE_UNAVAILABLE;
+ else if (l->dnd)
+ res = AST_DEVICE_BUSY;
+ else {
+ if (l->hookstate == SKINNY_ONHOOK) {
+ res = AST_DEVICE_NOT_INUSE;
+ } else {
+ res = AST_DEVICE_INUSE;
+ }
+
+ for (sub = l->sub; sub; sub = sub->next) {
+ if (sub->onhold) {
+ res = AST_DEVICE_ONHOLD;
+ break;
+ }
+ }
+ }
+
+ return res;
+}
+
static int reload_config(void)
{
int on = 1;