holded calls: basic functionality.
[asterisk-bristuff.git] / include / asterisk / features.h
blob9ae0e0d0ca94d5d6de767f1d7621b624b2959706
1 /*
2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 1999 - 2005, Digium, Inc.
6 * Mark Spencer <markster@digium.com>
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
10 * any of the maintainers of this project for assistance;
11 * the project provides a web site, mailing lists and IRC
12 * channels for your use.
14 * This program is free software, distributed under the terms of
15 * the GNU General Public License Version 2. See the LICENSE file
16 * at the top of the source tree.
19 /*! \file
20 * \brief Call Parking and Pickup API
21 * Includes code and algorithms from the Zapata library.
24 #ifndef _AST_FEATURES_H
25 #define _AST_FEATURES_H
27 #define FEATURE_MAX_LEN 11
28 #define FEATURE_APP_LEN 64
29 #define FEATURE_APP_ARGS_LEN 256
30 #define FEATURE_SNAME_LEN 32
31 #define FEATURE_EXTEN_LEN 32
32 #define FEATURE_MOH_LEN 80 /* same as MAX_MUSICCLASS from channel.h */
34 /*! \brief main call feature structure */
35 struct ast_call_feature {
36 int feature_mask;
37 char *fname;
38 char sname[FEATURE_SNAME_LEN];
39 char exten[FEATURE_MAX_LEN];
40 char default_exten[FEATURE_MAX_LEN];
41 int (*operation)(struct ast_channel *chan, struct ast_channel *peer, struct ast_bridge_config *config, char *code, int sense, void *data);
42 unsigned int flags;
43 char app[FEATURE_APP_LEN];
44 char app_args[FEATURE_APP_ARGS_LEN];
45 char moh_class[FEATURE_MOH_LEN];
46 AST_LIST_ENTRY(ast_call_feature) feature_entry;
51 /*! \brief Park a call and read back parked location
52 * \param chan the channel to actually be parked
53 \param host the channel which will have the parked location read to
54 Park the channel chan, and read back the parked location to the
55 host. If the call is not picked up within a specified period of
56 time, then the call will return to the last step that it was in
57 (in terms of exten, priority and context)
58 \param timeout is a timeout in milliseconds
59 \param extout is a parameter to an int that will hold the parked location, or NULL if you want
61 int ast_park_call(struct ast_channel *chan, struct ast_channel *host, int timeout, int *extout);
63 /*! \brief Park a call via a masqueraded channel
64 * \param rchan the real channel to be parked
65 \param host the channel to have the parking read to
66 Masquerade the channel rchan into a new, empty channel which is then
67 parked with ast_park_call
68 \param timeout is a timeout in milliseconds
69 \param extout is a parameter to an int that will hold the parked location, or NULL if you want
71 int ast_masq_park_call(struct ast_channel *rchan, struct ast_channel *host, int timeout, int *extout);
73 extern int ast_hold_call(struct ast_channel *chan, struct ast_channel *host);
74 extern int ast_masq_hold_call(struct ast_channel *rchan, struct ast_channel *host);
75 extern int ast_retrieve_call(struct ast_channel *chan, char *uniqueid);
76 extern int ast_retrieve_call_to_death(char *uniqueid);
77 extern struct ast_channel *ast_get_holded_call(char *uniqueid);
79 /*! \brief Determine system parking extension
80 * Returns the call parking extension for drivers that provide special
81 call parking help */
82 char *ast_parking_ext(void);
84 /*! \brief Determine system call pickup extension */
85 char *ast_pickup_ext(void);
87 /*! \brief Bridge a call, optionally allowing redirection */
88 int ast_bridge_call(struct ast_channel *chan, struct ast_channel *peer,struct ast_bridge_config *config);
90 /*! \brief Pickup a call */
91 int ast_pickup_call(struct ast_channel *chan);
93 /*! \brief register new feature into feature_set
94 \param feature an ast_call_feature object which contains a keysequence
95 and a callback function which is called when this keysequence is pressed
96 during a call. */
97 void ast_register_feature(struct ast_call_feature *feature);
99 /*! \brief unregister feature from feature_set
100 \param feature the ast_call_feature object which was registered before*/
101 void ast_unregister_feature(struct ast_call_feature *feature);
103 #endif /* _AST_FEATURES_H */