mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-07-05 20:41:39 -07:00
11 lines
235 B
C
11 lines
235 B
C
#ifndef _HYDRA_HTTP_H
|
|
#define _HYDRA_HTTP_H
|
|
|
|
typedef struct header_node t_header_node, *ptr_header_node;
|
|
|
|
extern char *webtarget;
|
|
extern char *slash;
|
|
extern char *optional1;
|
|
|
|
extern ptr_header_node parse_options(char *miscptr);
|
|
#endif
|