=================================================================== RCS file: /cvs/cvs/blind/blind.h,v retrieving revision 1.11 retrieving revision 1.14 diff -u -p -r1.11 -r1.14 --- blind/blind.h 2022/04/03 09:14:25 1.11 +++ blind/blind.h 2022/04/19 03:01:37 1.14 @@ -18,6 +18,7 @@ #define BLIND_H #include +#include #define BL_TEXT "blind" #define BL_VERS "0.0.1" @@ -34,9 +35,18 @@ struct blind { char bl_conf[PATH_MAX]; - char bl_sock[PATH_MAX]; + char bl_sock[PATH_MAX]; int bl_ttl; - uint32_t bl_opt; + uint32_t bl_opt; +}; + +struct file { + FILE *stream; + char *name; + size_t unpos; + size_t unsize; + u_char *unbuf; + int lineno; }; #endif /* BLIND_H */