0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-11 14:38:57 +02:00

ircd::http: Reopen namespace with default visibility for clang.

This commit is contained in:
Jason Volk 2020-02-13 16:25:59 -08:00
parent e1e7457e2d
commit d2b79dbb04

View file

@ -216,6 +216,12 @@ struct ircd::http::parser
}
const ircd::http::parser;
namespace ircd { namespace http
__attribute__((visibility("default")))
{
// stub needed for clang
}}
/// Compose a request. This prints an HTTP head into the buffer. No real IO is
/// done here. After composing into the buffer, the user can then drive the
/// socket by sending the header and the content as specified.