47 lines
1.5 KiB
C
47 lines
1.5 KiB
C
/*
|
|
Copyright (C) 2010 bg <bg_one@mail.ru>
|
|
*/
|
|
#ifndef CHAN_DONGLE_CHANNEL_H_INCLUDED
|
|
#define CHAN_DONGLE_CHANNEL_H_INCLUDED
|
|
|
|
#include "ast_config.h"
|
|
|
|
#include <asterisk/frame.h> /* enum ast_control_frame_type */
|
|
|
|
#include "ast_compat.h" /* asterisk compatibility fixes */
|
|
|
|
#include "export.h" /* EXPORT_DECL EXPORT_DEF */
|
|
|
|
|
|
typedef struct channel_var
|
|
{
|
|
const char * name;
|
|
char * value;
|
|
} channel_var_t;
|
|
|
|
struct pvt;
|
|
struct cpvt;
|
|
|
|
EXPORT_DECL struct ast_channel_tech channel_tech;
|
|
|
|
#if ASTERISK_VERSION_NUM >= 120000 /* 12+ */
|
|
EXPORT_DECL struct ast_channel* new_channel(
|
|
struct pvt * pvt, int ast_state, const char * cid_num, int call_idx,
|
|
unsigned dir, unsigned state, const char * exten,
|
|
const struct ast_assigned_ids *assignedids,
|
|
const struct ast_channel * requestor);
|
|
#else /* 12- */
|
|
EXPORT_DECL struct ast_channel* new_channel(
|
|
struct pvt * pvt, int ast_state, const char * cid_num, int call_idx,
|
|
unsigned dir, unsigned state, const char * exten,
|
|
const struct ast_channel * requestor);
|
|
#endif /* ^12- */
|
|
EXPORT_DECL int queue_control_channel (struct cpvt * cpvt, enum ast_control_frame_type control);
|
|
EXPORT_DECL int queue_hangup (struct ast_channel * channel, int hangupcause);
|
|
EXPORT_DECL void start_local_channel (struct pvt * pvt, const char * exten, const char * number, channel_var_t * vars);
|
|
EXPORT_DECL void change_channel_state(struct cpvt * cpvt, unsigned newstate, int cause);
|
|
EXPORT_DECL int channels_loop(struct pvt * pvt, const struct ast_channel * requestor);
|
|
|
|
|
|
#endif /* CHAN_DONGLE_CHANNEL_H_INCLUDED */
|