We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
root@:~/reaver-wps-fork-t6x/src# make gcc -DCONF_DIR='"/usr/local/var/lib/reaver"' -Wall -g -O2 -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-function -Wno-pointer-sign -Ilibwps -I. -Ilwe -DCONFIG_IPV6 -c -o globule.o globule.c In file included from globule.c:34: globule.h:149:9: error: unknown type name ‘pcap_t’ 149 | pcap_t handle; / Pcap handle */ | ^~~~~~ globule.h:251:17: error: unknown type name ‘pcap_t’ 251 | void set_handle(pcap_t *value); | ^~~~~~ globule.h:252:1: error: unknown type name ‘pcap_t’ 252 | pcap_t *get_handle(); | ^~~~~~ globule.c: In function ‘globule_deinit’: globule.c:70:23: warning: implicit declaration of function ‘pcap_close’; did you mean ‘pclose’? [-Wimplicit-function-declaration] 70 | if(globule->handle) pcap_close(globule->handle); | ^~~~~~~~~~ | pclose globule.c: At top level: globule.c:529:17: error: unknown type name ‘pcap_t’ 529 | void set_handle(pcap_t *value) | ^~~~~~ globule.c:533:1: error: unknown type name ‘pcap_t’ 533 | pcap_t *get_handle() | ^~~~~~ make: *** [: globule.o] Error 1
The text was updated successfully, but these errors were encountered:
do you have libpcap-dev installed ?
Sorry, something went wrong.
Setups again your environment
make clean ./configure make
Setups again your environment make clean ./configure make
No branches or pull requests
root@:~/reaver-wps-fork-t6x/src# make
gcc -DCONF_DIR='"/usr/local/var/lib/reaver"' -Wall -g -O2 -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-function -Wno-pointer-sign -Ilibwps -I. -Ilwe -DCONFIG_IPV6 -c -o globule.o globule.c
In file included from globule.c:34:
globule.h:149:9: error: unknown type name ‘pcap_t’
149 | pcap_t handle; / Pcap handle */
| ^~~~~~
globule.h:251:17: error: unknown type name ‘pcap_t’
251 | void set_handle(pcap_t *value);
| ^~~~~~
globule.h:252:1: error: unknown type name ‘pcap_t’
252 | pcap_t *get_handle();
| ^~~~~~
globule.c: In function ‘globule_deinit’:
globule.c:70:23: warning: implicit declaration of function ‘pcap_close’; did you mean ‘pclose’? [-Wimplicit-function-declaration]
70 | if(globule->handle) pcap_close(globule->handle);
| ^~~~~~~~~~
| pclose
globule.c: At top level:
globule.c:529:17: error: unknown type name ‘pcap_t’
529 | void set_handle(pcap_t *value)
| ^~~~~~
globule.c:533:1: error: unknown type name ‘pcap_t’
533 | pcap_t *get_handle()
| ^~~~~~
make: *** [: globule.o] Error 1
The text was updated successfully, but these errors were encountered: