From 6e6cab748adf0aaa600af337db7322c67346f7e2 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Tue, 12 Feb 2013 00:01:10 +0100 Subject: [PATCH] Added a couple USSD codes for the FYVE provider (Germany) --- src/plugins/ussd.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/plugins/ussd.c b/src/plugins/ussd.c index 583bd54..4556df1 100644 --- a/src/plugins/ussd.c +++ b/src/plugins/ussd.c @@ -1,5 +1,5 @@ /* $Id$ */ -/* Copyright (c) 2011-2012 Pierre Pronchery */ +/* Copyright (c) 2011-2013 Pierre Pronchery */ /* This file is part of DeforaOS Desktop Phone */ /* This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -49,6 +49,14 @@ static USSDCode _ussd_codes_de_eplus[] = { NULL, NULL } }; +/* FYVE, see http://www.prepaid-wiki.de/index.php5/FYVE#Servicefunktionen */ +static USSDCode _ussd_codes_de_fyve[] = +{ + { "*100#", "Balance enquiry and charging menu" }, + { "*106#", "Balance enquiry" }, + { NULL, NULL } +}; + /* MTN, see http://www.mtn.co.za/Support/faq/Pages/USSD.aspx */ static USSDCode _ussd_codes_za_mtn[] = { @@ -89,6 +97,7 @@ static const struct } _ussd_operators[] = { { "E-plus", _ussd_codes_de_eplus }, + { "FYVE", _ussd_codes_de_fyve }, { "Monacell", _ussd_codes_fr_virgin }, { "MTN", _ussd_codes_za_mtn }, { "NRJ", _ussd_codes_fr_virgin },