[Asterisk-cvs] asterisk/include/asterisk features.h,NONE,1.1 parking.h,1.8,NONE
markster at lists.digium.com
markster at lists.digium.com
Sat Jul 17 17:11:58 CDT 2004
- Previous message: [Asterisk-cvs] asterisk/configs features.conf.sample,NONE,1.1 parking.conf.sample,1.2,NONE
- Next message: [Asterisk-cvs] asterisk/channels chan_agent.c,1.78,1.79 chan_iax2.c,1.172,1.173 chan_mgcp.c,1.60,1.61 chan_sip.c,1.454,1.455 chan_skinny.c,1.51,1.52 chan_zap.c,1.298,1.299
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /usr/cvsroot/asterisk/include/asterisk
In directory localhost.localdomain:/tmp/cvs-serv20248/include/asterisk
Added Files:
features.h
Removed Files:
parking.h
Log Message:
rename "parking" to "features" in preparation for some more (possibly post 1.0) feature additions
--- NEW FILE: features.h ---
/*
* Asterisk -- A telephony toolkit for Linux.
*
* Call Parking and Pickup API
*
* Copyright (C) 1999, Mark Spencer
*
* Mark Spencer <markster at linux-support.net>
*
* This program is free software, distributed under the terms of
* the GNU General Public License.
*
* Includes code and algorithms from the Zapata library.
*
*/
#ifndef _PARKING_H
#define _PARKING_H
//! Park a call and read back parked location
/*! \param chan the channel to actually be parked
\param host the channel which will have the parked location read to
Park the channel chan, and read back the parked location to the
host. If the call is not picked up within a specified period of
time, then the call will return to the last step that it was in
(in terms of exten, priority and context)
\param timeout is a timeout in milliseconds
\param extout is a parameter to an int that will hold the parked location, or NULL if you want
*/
extern int ast_park_call(struct ast_channel *chan, struct ast_channel *host, int timeout, int *extout);
//! Park a call via a masqueraded channel
/*! \param rchan the real channel to be parked
\param host the channel to have the parking read to
Masquerade the channel rchan into a new, empty channel which is then
parked with ast_park_call
\param timeout is a timeout in milliseconds
\param extout is a parameter to an int that will hold the parked location, or NULL if you want
*/
extern int ast_masq_park_call(struct ast_channel *rchan, struct ast_channel *host, int timeout, int *extout);
//! Determine system parking extension
/*! Returns the call parking extension for drivers that provide special
call parking help */
extern char *ast_parking_ext(void);
extern char *ast_pickup_ext(void);
//! Bridge a call, optionally allowing redirection
extern int ast_bridge_call(struct ast_channel *chan, struct ast_channel *peer,struct ast_bridge_config *config);
extern int ast_pickup_call(struct ast_channel *chan);
#endif /* _PARKING_H */
--- parking.h DELETED ---
- Previous message: [Asterisk-cvs] asterisk/configs features.conf.sample,NONE,1.1 parking.conf.sample,1.2,NONE
- Next message: [Asterisk-cvs] asterisk/channels chan_agent.c,1.78,1.79 chan_iax2.c,1.172,1.173 chan_mgcp.c,1.60,1.61 chan_sip.c,1.454,1.455 chan_skinny.c,1.51,1.52 chan_zap.c,1.298,1.299
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the svn-commits
mailing list