blob: ec29cbcb0bd296a972dd766a0b6c13e9ebca96fd [file] [log] [blame]
Christopher Fauletf4eb75d2018-10-11 15:55:07 +02001/*
2 * HTTP protocol analyzer
3 *
4 * Copyright (C) 2018 HAProxy Technologies, Christopher Faulet <cfaulet@haproxy.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13__attribute__((constructor))
14static void __htx_protocol_init(void)
15{
16}
17
18
19/*
20 * Local variables:
21 * c-indent-level: 8
22 * c-basic-offset: 8
23 * End:
24 */