X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=libbb%2Flibbb.h;h=a9c1a870f7f670896804a8daea100ff451178064;hb=6fc92a506ab3c490a4dc028334c908f19c0d0806;hp=224c561d558b12a2a6546d5c31ab3ae5a9f59733;hpb=3e94f729a54d13301d10b2a1c0225a951aaf074a;p=oweals%2Fbusybox.git diff --git a/libbb/libbb.h b/libbb/libbb.h index 224c561d5..a9c1a870f 100644 --- a/libbb/libbb.h +++ b/libbb/libbb.h @@ -238,7 +238,8 @@ enum extract_functions_e { extract_unzip_only = 256, extract_unconditional = 512, extract_create_leading_dirs = 1024, - extract_quiet = 2048 + extract_quiet = 2048, + extract_exclude_list = 4096 }; char *unarchive(FILE *src_stream, FILE *out_stream, file_header_t *(*get_header)(FILE *), const int extract_function, const char *prefix, char **extract_names); @@ -252,6 +253,7 @@ extern void gz_close(int gunzip_pid); extern FILE *gz_open(FILE *compressed_file, int *pid); extern struct hostent *xgethostbyname(const char *name); +extern int create_icmp_socket(void); char *dirname (const char *path); @@ -284,5 +286,6 @@ extern const char * const write_error; extern const char * const too_few_args; extern const char * const name_longer_than_foo; extern const char * const unknown; +extern const char * const can_not_create_raw_socket; #endif /* __LIBBB_H__ */