mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2026-02-08 04:50:41 +01:00
- remove unused variables - fix coding style of most function (Indentation, Tabulation, ..) - check the source code using cppcheck tool - change sprintf by snprintf
35 lines
1.1 KiB
C
35 lines
1.1 KiB
C
/*
|
|
* Copyright (C) 2019 iopsys Software Solutions AB
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License version 2.1
|
|
* as published by the Free Software Foundation
|
|
*
|
|
* Author: Omar Kallel <omar.kallel@pivasoftware.com>
|
|
*
|
|
*/
|
|
|
|
#ifndef __UPNPDEVICE_H
|
|
#define __UPNPDEVICE_H
|
|
|
|
#include <libbbf_api/dmcommon.h>
|
|
|
|
#ifdef BBF_TR064
|
|
extern DMOBJ tEntry181ObjUPNP[];
|
|
extern DMOBJ tRoot181ObjUPNP[];
|
|
extern DMOBJ tRoot181ObjUPNPDMROOT[];
|
|
extern DMOBJ tRoot181ObjUPNPDM[];
|
|
extern DMOBJ tRoot181ObjUPNPBBF[];
|
|
extern UPNP_SUPPORTED_DM tUPNPSupportedDM[];
|
|
extern UPNP_SUPPORTED_DM tUPNPSupportedDM_181[];
|
|
extern size_t tr181_size;
|
|
|
|
#define UPNP_SUPPORTED_PARAMETERS_VERSION 1 //Should be incremented each time the Parameters are updated
|
|
#define UPNP_SUPPORTED_DATAMODEL_VERSION 1 //Should be incremented each time the tUPNPSupportedDM array is updated
|
|
|
|
#define DMROOT_URI_181 "urn:broadband-forum-org:tr-181-2-11-0"
|
|
#define DMROOT_URL_181 "https://www.broadband-forum.org/cwmp/tr-181-2-11-0.html"
|
|
#define DMROOT_DESC_181 "TR-181 Device:2 Root Object definition"
|
|
|
|
#endif
|
|
#endif
|