diff options
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index 68e4851db..858adca4c 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -400,6 +400,15 @@ extern int bb_cat(char** argv); | |||
400 | extern int bb_echo(char** argv); | 400 | extern int bb_echo(char** argv); |
401 | extern int bb_test(int argc, char** argv); | 401 | extern int bb_test(int argc, char** argv); |
402 | 402 | ||
403 | |||
404 | /* Networking */ | ||
405 | int create_icmp_socket(void); | ||
406 | int create_icmp6_socket(void); | ||
407 | /* interface.c */ | ||
408 | extern int interface_opt_a; | ||
409 | int display_interfaces(char *ifname); | ||
410 | |||
411 | |||
403 | #ifndef BUILD_INDIVIDUAL | 412 | #ifndef BUILD_INDIVIDUAL |
404 | extern struct BB_applet *find_applet_by_name(const char *name); | 413 | extern struct BB_applet *find_applet_by_name(const char *name); |
405 | extern void run_applet_by_name(const char *name, int argc, char **argv); | 414 | extern void run_applet_by_name(const char *name, int argc, char **argv); |
@@ -438,8 +447,6 @@ int exists_execable(const char *filename); | |||
438 | USE_DESKTOP(long long) int uncompress(int fd_in, int fd_out); | 447 | USE_DESKTOP(long long) int uncompress(int fd_in, int fd_out); |
439 | int inflate(int in, int out); | 448 | int inflate(int in, int out); |
440 | 449 | ||
441 | int create_icmp_socket(void); | ||
442 | int create_icmp6_socket(void); | ||
443 | 450 | ||
444 | unsigned short bb_lookup_port(const char *port, const char *protocol, unsigned short default_port); | 451 | unsigned short bb_lookup_port(const char *port, const char *protocol, unsigned short default_port); |
445 | void bb_lookup_host(struct sockaddr_in *s_in, const char *host); | 452 | void bb_lookup_host(struct sockaddr_in *s_in, const char *host); |