Open SCAP Library
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
ds_sds_session_priv.h
1 /*
2  * Copyright 2014 Red Hat Inc., Durham, North Carolina.
3  * All Rights Reserved.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18  *
19  *
20  */
21 #ifndef OSCAP_DS_SDS_SESSION_PRIV_H
22 #define OSCAP_DS_SDS_SESSION_PRIV_H
23 
24 #ifdef HAVE_CONFIG_H
25 #include <config.h>
26 #endif
27 
28 #include "common/public/oscap.h"
29 #include "common/util.h"
30 #include "DS/public/scap_ds.h"
31 #include "DS/public/ds_sds_session.h"
32 #include <libxml/tree.h>
33 
34 OSCAP_HIDDEN_START;
35 
36 xmlNode *ds_sds_session_get_selected_datastream(struct ds_sds_session *session);
37 xmlDoc *ds_sds_session_get_xmlDoc(struct ds_sds_session *session);
38 int ds_sds_session_register_component_source(struct ds_sds_session *session, const char *relative_filepath, struct oscap_source *component);
39 const char *ds_sds_session_get_target_dir(struct ds_sds_session *session);
40 struct oscap_htable *ds_sds_session_get_component_sources(struct ds_sds_session *session);
41 const char *ds_sds_session_get_readable_origin(const struct ds_sds_session *session);
42 bool ds_sds_session_fetch_remote_resources(struct ds_sds_session *session);
43 download_progress_calllback_t ds_sds_session_remote_resources_progress(struct ds_sds_session *session);
44 
45 void download_progress_empty_calllback(bool warning, const char * format, ...);
46 OSCAP_HIDDEN_END;
47 #endif
General OpenScap functions and types.
Definition: oscap_source.c:62
Definition: list.h:183
Open-scap Data Stream interface.
Definition: ds_sds_session.c:47