mirror of
https://dev.iopsys.eu/bbf/icwmp.git
synced 2026-02-16 12:59:15 +01:00
27 lines
1 KiB
C
27 lines
1 KiB
C
/*
|
|
* 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
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Copyright (C) 2012-2014 PIVA SOFTWARE (www.pivasoftware.com)
|
|
* Author: Imen Bhiri <imen.bhiri@pivasoftware.com>
|
|
*/
|
|
#ifndef __SOFTWARE_MODULE_H
|
|
#define __SOFTWARE_MODULE_H
|
|
|
|
struct software_module
|
|
{
|
|
struct uci_section *softsection;
|
|
};
|
|
int update_softwaremodules_url(char *uuid, char *url);
|
|
char *get_softwaremodules_url(char *uuid);
|
|
char *get_softwaremodules_uuid(char *url);
|
|
char *get_softwaremodules_username(char *uuid);
|
|
char *get_softwaremodules_pass(char *uuid);
|
|
char *get_softwaremodules_instance(char *uuid);
|
|
char *get_softwaremodules_version(char *uuid);
|
|
char *add_softwaremodules_deploymentunit(char *uuid, char*url, char *username, char *password, char *name, char *version);
|
|
char *get_softwaremodules_name(char *uuid);
|
|
int entry_method_root_software_modules(struct dmctx *ctx);
|
|
#endif
|