Christopher Faulet | f4eb75d | 2018-10-11 15:55:07 +0200 | [diff] [blame] | 1 | /* |
| 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)) |
| 14 | static 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 | */ |