mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 02:37:10 +00:00 
			
		
		
		
	Add walk by channel name prefixed
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6800 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
		| @@ -789,6 +789,12 @@ struct ast_channel *ast_get_channel_by_name_prefix_locked(const char *name, cons | ||||
| 	return channel_find_locked(NULL, name, namelen, NULL, NULL); | ||||
| } | ||||
|  | ||||
| /*--- ast_walk_channel_by_name_prefix_locked: Get next channel by name prefix and lock it */ | ||||
| struct ast_channel *ast_walk_channel_by_name_prefix_locked(struct ast_channel *chan, const char *name, const int namelen) | ||||
| { | ||||
| 	return channel_find_locked(chan, name, namelen, NULL, NULL); | ||||
| } | ||||
|  | ||||
| /*--- ast_get_channel_by_exten_locked: Get channel by exten (and optionally context) and lock it */ | ||||
| struct ast_channel *ast_get_channel_by_exten_locked(const char *exten, const char *context) | ||||
| { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user