mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 02:37:10 +00:00 
			
		
		
		
	use string fields for some stuff in ast_channel
const-ify some more APIs remove 'type' field from ast_channel, in favor of the one in the channel's tech structure allow string field module users to specify the 'chunk size' for pool allocations update chan_alsa to be compatible with recent const-ification patches git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9060 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
		| @@ -33,6 +33,7 @@ | ||||
| #include "asterisk/logger.h" | ||||
| #include "asterisk/utils.h" | ||||
| #include "asterisk/app.h" | ||||
| #include "asterisk/stringfields.h" | ||||
|  | ||||
| static char *builtin_function_language_read(struct ast_channel *chan, char *cmd, char *data, char *buf, size_t len)  | ||||
| { | ||||
| @@ -44,7 +45,7 @@ static char *builtin_function_language_read(struct ast_channel *chan, char *cmd, | ||||
| static void builtin_function_language_write(struct ast_channel *chan, char *cmd, char *data, const char *value)  | ||||
| { | ||||
| 	if (value) | ||||
| 		ast_copy_string(chan->language, value, sizeof(chan->language)); | ||||
|                 ast_string_field_set(chan, language, value); | ||||
| } | ||||
|  | ||||
| #ifndef BUILTIN_FUNC | ||||
|   | ||||
| @@ -30,6 +30,7 @@ | ||||
| #include "asterisk/channel.h" | ||||
| #include "asterisk/pbx.h" | ||||
| #include "asterisk/utils.h" | ||||
| #include "asterisk/stringfields.h" | ||||
|  | ||||
| static char *function_moh_read(struct ast_channel *chan, char *cmd, char *data, char *buf, size_t len) | ||||
| { | ||||
| @@ -40,7 +41,7 @@ static char *function_moh_read(struct ast_channel *chan, char *cmd, char *data, | ||||
|  | ||||
| static void function_moh_write(struct ast_channel *chan, char *cmd, char *data, const char *value)  | ||||
| { | ||||
| 	ast_copy_string(chan->musicclass, value, sizeof(chan->musicclass)); | ||||
| 	ast_string_field_set(chan, musicclass, value); | ||||
| } | ||||
|  | ||||
| #ifndef BUILTIN_FUNC | ||||
|   | ||||
		Reference in New Issue
	
	Block a user