diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2013-06-23 19:40:47 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2013-06-23 19:40:47 +0000 |
commit | 0817df2fb67e3a2be95b311c4c2d42d2a1e1bc41 (patch) | |
tree | 25123b396b822a7c2219eb3456eef3dfd9a6462a /src/htsopt.h | |
parent | f42a5fa5dd4b5b8b91b66e7b47602be12aa298b2 (diff) |
Trashed historical link heap hashtable, and replaced it by cleaner code using new cuckoo hashtables
I can not believe I kept such a terible and frightening code for such a long time, geez.
Diffstat (limited to 'src/htsopt.h')
-rw-r--r-- | src/htsopt.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/htsopt.h b/src/htsopt.h index e76d8f2..a841b49 100644 --- a/src/htsopt.h +++ b/src/htsopt.h @@ -163,6 +163,12 @@ struct fspc_strc { int info; }; +/* lien_url */ +#ifndef HTS_DEF_FWSTRUCT_lien_url +#define HTS_DEF_FWSTRUCT_lien_url +typedef struct lien_url lien_url; +#endif + #ifndef HTS_DEF_DEFSTRUCT_hts_log_type #define HTS_DEF_DEFSTRUCT_hts_log_type typedef enum hts_log_type { @@ -355,6 +361,7 @@ struct httrackp { String urllist; // fichier liste de filtres à inclure htsfilters filters; // contient les pointeurs pour les filtres hash_struct *hash; // hash structure + lien_url **liens; // liens robots_wizard *robotsptr; // robots ptr String lang_iso; // en, fr .. String mimedefs; // ext1=mimetype1\next2=mimetype2.. |