[asterisk-dev] [Code Review] ast_callerid restructuring

Johann Steinwendtner steinwendtner at gmx.net
Fri Jun 11 01:03:13 CDT 2010


On 2010-06-11 00:13, rmudgett at digium.com wrote:

>
> Summary
> -------
>
> The purpose of this patch is to eliminate struct ast_callerid since it has
> turned into a miscellaneous collection of various party information.
>
> Eliminate struct ast_callerid and replace it with the following struct
> organization:
>
> struct ast_party_name {
> 	char *str;
> 	int char_set;
> 	int presentation;
> 	unsigned char valid;
> };
> struct ast_party_number {
> 	char *str;
> 	int plan;
> 	int presentation;
> 	unsigned char valid;
> };
Why isn't there a type of number field in struct ast_party_number ?

Regards

Hans



More information about the asterisk-dev mailing list