aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/channel_pvt.h
blob: 99515611f4a1cb99b0969cf0577bd247cbc01494 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
 * Asterisk -- A telephony toolkit for Linux.
 *
 * Private channel definitions for channel implementations only.
 * 
 * Copyright (C) 1999, Mark Spencer
 *
 * Mark Spencer <markster@linux-support.net>
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License
 */

#ifndef _ASTERISK_CHANNEL_PVT_H
#define _ASTERISK_CHANNEL_PVT_H

#include <asterisk/channel.h>

#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif


struct ast_channel_pvt {
	/*! Private data used by channel backend */
	void *pvt;
	struct ast_frame *readq;
	int alertpipe[2];
	/*! Write translation path */
	struct ast_trans_pvt *writetrans;
	/*! Read translation path */
	struct ast_trans_pvt *readtrans;
	/*! Raw read format */
	int rawreadformat;
	/*! Raw write format */
	int rawwriteformat;
	/*! Send a literal DTMF digit */
	int (*send_digit)(struct ast_channel *chan, char digit);
	/*! Call a given phone number (address, etc), but don't
	   take longer than timeout seconds to do so.  */
	int (*call)(struct ast_channel *chan, char *addr, int timeout);
	/*! Hangup (and possibly destroy) the channel */
	int (*hangup)(struct ast_channel *chan);
	/*! Answer the line */
	int (*answer)(struct ast_channel *chan);
	/*! Read a frame, in standard format */
	struct ast_frame * (*read)(struct ast_channel *chan);
	/*! Write a frame, in standard format */
	int (*write)(struct ast_channel *chan, struct ast_frame *frame);
	/*! Display or transmit text */
	int (*send_text)(struct ast_channel *chan, char *text);
	/*! Display or send an image */
	int (*send_image)(struct ast_channel *chan, struct ast_frame *frame);
	/*! Send HTML data */
	int (*send_html)(struct ast_channel *chan, int subclass, char *data, int len);
	/*! Handle an exception, reading a frame */
	struct ast_frame * (*exception)(struct ast_channel *chan);
	/*! Bridge two channels of the same type together */
	int (*bridge)(struct ast_channel *c0, struct ast_channel *c1, int flags, struct ast_frame **fo, struct ast_channel **rc);
	/*! Indicate a particular condition (e.g. AST_CONTROL_BUSY or AST_CONTROL_RINGING or AST_CONTROL_CONGESTION */
	int (*indicate)(struct ast_channel *c, int condition);
	/*! Fix up a channel:  If a channel is consumed, this is called.  Basically update any ->owner links */
	int (*fixup)(struct ast_channel *oldchan, struct ast_channel *newchan);
	/*! Set a given option */
	int (*setoption)(struct ast_channel *chan, int option, void *data, int datalen);
	/*! Query a given option */
	int (*queryoption)(struct ast_channel *chan, int option, void *data, int *datalen);
};

//! Create a channel structure
/*! Returns NULL on failure to allocate */
struct ast_channel *ast_channel_alloc(int needalertpipe);

/*! Queue an outgoing frame, locking if necessary */
int ast_queue_frame(struct ast_channel *chan, struct ast_frame *f, int lock);

int ast_queue_hangup(struct ast_channel *chan, int lock);

int ast_queue_control(struct ast_channel *chan, int control, int lock);

//! Free a channel structure
void  ast_channel_free(struct ast_channel *);

#if defined(__cplusplus) || defined(c_plusplus)
}
#endif


#endif