1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-01 05:00:44 +00:00
falk-werner_webfuse-provider/lib/webfuse/core/url.h

33 lines
377 B
C
Raw Normal View History

2020-06-11 17:12:07 +00:00
#ifndef WF_URL_H
#define WF_URL_H
2019-02-23 14:57:57 +00:00
#ifndef __cplusplus
#include <stdbool.h>
#endif
#ifdef __cplusplus
extern "C"
{
#endif
2020-06-11 17:12:07 +00:00
struct wf_url
2019-02-23 14:57:57 +00:00
{
char * host;
int port;
char * path;
bool use_tls;
2019-02-23 14:57:57 +00:00
};
2020-06-11 17:12:07 +00:00
extern bool wf_url_init(
struct wf_url * url,
2019-02-23 14:57:57 +00:00
char const * value);
2020-06-11 17:12:07 +00:00
extern void wf_url_cleanup(
struct wf_url * url);
2019-02-23 14:57:57 +00:00
#ifdef __cplusplus
}
#endif
#endif