Open SCAP Library
Loading...
Searching...
No Matches
oscap_acquire.h
1/*
2 * Copyright 2012--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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 *
19 */
20
21#ifndef OSCAP_ACQUIRE_H_
22#define OSCAP_ACQUIRE_H_
23
24#include "util.h"
25#include <stdbool.h>
26
27
36char *oscap_acquire_temp_dir(void);
37
42void oscap_acquire_cleanup_dir(char **dir_path);
43
53int oscap_acquire_temp_file(const char *dir, const char *template, char **filename);
54
60bool oscap_acquire_url_is_supported(const char *url);
61
67char *oscap_acquire_url_to_filename(const char *url);
68
75char *
76oscap_acquire_url_download(const char *url, size_t* memory_size);
77
84char *oscap_acquire_guess_realpath(const char *filepath);
85
92int oscap_acquire_mkdir_p(const char* path);
93
100int oscap_acquire_ensure_parent_dir(const char *filepath);
101
110size_t
111write_to_memory_callback(char *ptr, size_t size, size_t nmemb, void *userdata);
112
113// FIXME: SCE engine uses this particular function
114
121char *oscap_acquire_pipe_to_string(int fd);
122
123
124
125#endif