diff options
Diffstat (limited to 'src/resolver.h')
-rw-r--r-- | src/resolver.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/resolver.h b/src/resolver.h index 666b6d5b2..af14f5f23 100644 --- a/src/resolver.h +++ b/src/resolver.h @@ -34,6 +34,10 @@ resolver_quark(void) return g_quark_from_static_string("resolver"); } +#ifdef __cplusplus +extern "C" { +#endif + /** * Converts the specified socket address into a string in the form * "IP:PORT". The return value must be freed with g_free() when you @@ -63,4 +67,8 @@ resolve_host_port(const char *host_port, unsigned default_port, int flags, int socktype, GError **error_r); +#ifdef __cplusplus +} +#endif + #endif |