diff --git a/src/gui/network_service.cpp b/src/gui/network_service.cpp index 9668f1e2e..2fa4c2c79 100644 --- a/src/gui/network_service.cpp +++ b/src/gui/network_service.cpp @@ -50,13 +50,14 @@ struct network_service int enabled; }; -#define SERVICE_COUNT 4 +#define SERVICE_COUNT 5 static struct network_service services[SERVICE_COUNT] = { { "FTP", "vsftpd", "", LOCALE_MENU_HINT_NET_FTPD, "", 0 }, { "Telnet", "telnetd", "-l/bin/login", LOCALE_MENU_HINT_NET_TELNET, "", 0 }, { "DjMount", "djmount", "-o iocharset=utf8 /media/00upnp/", LOCALE_MENU_HINT_NET_DJMOUNT, "", 0 }, - { "uShare", "ushare", "-D -n `cat /etc/hostname`", LOCALE_MENU_HINT_NET_USHARE, "", 0 } + { "uShare", "ushare", "-D -n `cat /etc/hostname`", LOCALE_MENU_HINT_NET_USHARE, "", 0 }, + { "xupnpd", "xupnpd", "", LOCALE_MENU_HINT_NET_XUPNPD, "", 0 }, }; CNetworkService::CNetworkService(std::string cmd, std::string opts)