From 03930a5293239b66f4202da58c107cb15cd5d767 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Tue, 29 Dec 2015 14:42:48 +0100 Subject: [PATCH] Add a USSD code for the CCC 32C3 --- src/plugins/ussd.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/plugins/ussd.c b/src/plugins/ussd.c index e14e5cb..8e5293f 100644 --- a/src/plugins/ussd.c +++ b/src/plugins/ussd.c @@ -42,6 +42,12 @@ typedef struct _USSDCode /* constants */ /* Germany */ +static USSDCode _ussd_codes_de_ccc_32c3[] = +{ + { "*#100#", "Number request" }, + { NULL, NULL } +}; + /* E-Plus, see http://www.prepaid-wiki.de/index.php5/E-Plus */ static USSDCode _ussd_codes_de_eplus[] = { @@ -98,6 +104,7 @@ static const struct } _ussd_operators[] = { /* FIXME obtain the corresponding operator names */ + { "CCC 32C3", NULL, _ussd_codes_de_ccc_32c3 }, { "E-Plus", NULL, _ussd_codes_de_eplus }, { "FYVE", NULL, _ussd_codes_de_fyve }, { "Monacell", NULL, _ussd_codes_fr_virgin },