1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-29 20:10:45 +00:00
falk-werner_webfuse-provider/lib/webfuse/provider/impl/url.h

33 lines
435 B
C
Raw Normal View History

2019-03-26 22:04:53 +00:00
#ifndef WF_PROVIDER_IMPL_URL_H
#define WF_PROVIDER_IMPL_URL_H
2019-02-23 14:57:57 +00:00
#ifndef __cplusplus
#include <stdbool.h>
#endif
#ifdef __cplusplus
extern "C"
{
#endif
2019-03-26 22:04:53 +00:00
struct wfp_impl_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
};
2019-03-26 22:04:53 +00:00
extern bool wfp_impl_url_init(
struct wfp_impl_url * url,
2019-02-23 14:57:57 +00:00
char const * value);
2019-03-26 22:04:53 +00:00
extern void wfp_impl_url_cleanup(
struct wfp_impl_url * url);
2019-02-23 14:57:57 +00:00
#ifdef __cplusplus
}
#endif
#endif