summaryrefslogtreecommitdiff
path: root/src/hash.c
Commit message (Collapse)AuthorAgeFilesLines
* Do not depend on always defined macrosGiuseppe Scrivano2014-06-121-5/+1
|
* Ensure main calls bindtextdomainGiuseppe Scrivano2014-06-121-0/+9
|
* removed 'const' warnings.Tim Ruehsen2012-05-141-3/+3
| | | | | | | | | | | | | | | | | | * hash.h (hash_table_put): Make argument "value" const. * hash.c (hash_table_put): Make argument value const. Cast `value' to void. * http.c (request_set_header): Make argument `name' const. Cast `value' and `name' to void*. (request_remove_header): Make argument `name' const. * url.c (url_file_name): Make `index_filename' static. * warc.h (warc_write_cdx_record): Make `url', `timestamp', `mime_type', `payload_digest', `redirect_location', `warc_filename', response_uuid' arguments const. Make `checksum' const. * warc.c (warc_write_date_header): Make the `timestamp' argument const. Make `extension' const. (warc_write_cdx_record): Make `url', `timestamp', `mime_type', `payload_digest', `redirect_location', `warc_filename', response_uuid' arguments const. Make `checksum' const.
* mass change: update copyright years.Giuseppe Scrivano2011-01-011-1/+1
|
* Mass update copyright years.Giuseppe Scrivano2010-05-081-1/+1
|
* [mq]: cfg-mkMicah Cowan2009-09-211-5/+5
|
* Ran update-copyright.Micah Cowan2009-09-041-2/+2
|
* stdint.h adjustments for Interix, thanks Markus Duft <mduft@gentoo.org>.Micah Cowan2009-04-241-2/+2
|
* Henri's -Wall patch.Micah Cowan2008-05-301-1/+1
|
* Updated copyright year.Micah Cowan2008-01-251-2/+2
|
* Merge SFLC licensing changes for OpenSSL with tip.Micah Cowan2007-12-071-9/+10
|\
| * Updated licensing exception for OpenSSL from the SFLC.Micah Cowan2007-11-281-9/+10
| |
* | Eschew config-post.h.Micah Cowan2007-10-181-3/+2
| |
* | ISSPACE -> c_isspaceMicah Cowan2007-10-141-3/+3
|/
* Update copyright lists, conforming to maintainer guidelinesMicah Cowan2007-09-281-1/+2
|
* [svn] Make indentation consistent (all-spaces, no tabs).micah2007-08-021-76/+76
|
* [svn] Merge of fix for bugs 20341 and 20410.micah2007-07-091-3/+2
|
* [svn] Added sanity checks for -k, -p, -r and -N when -O is given. Added ↵mtortonesi2006-07-141-1/+1
| | | | fixes for 64-bit platforms. Updated copyright and maintainer information.
* [svn] Wrap macro arg in parentheses.hniksic2006-04-111-1/+1
|
* [svn] Fixed definition of TOLOWER when STANDALONE.hniksic2006-03-061-1/+2
|
* [svn] Obtain the declaration of uintptr_t when standalone.hniksic2006-02-021-0/+5
|
* [svn] Don't define countof if it's already defined.hniksic2006-02-021-1/+3
|
* [svn] Use uintptr_t instead of unsigned long for integer representation of ↵hniksic2005-11-191-4/+4
| | | | pointers.
* [svn] Doc fix.hniksic2005-08-271-14/+15
|
* [svn] Simplify iteration over hash table entries.hniksic2005-08-271-37/+81
|
* [svn] Update FSF's address and copyright years.hniksic2005-07-011-3/+3
|
* [svn] Trivially rename "mapping" to "cell" and "non-empty" to "occupied" tohniksic2005-06-201-104/+106
| | | | avoid confusion.
* [svn] Don't cast return type of malloc/realloc. Assume ANSI C signal handlers.hniksic2005-06-191-3/+2
|
* [svn] Remove K&R support.hniksic2005-06-191-18/+6
|
* [svn] Remove unreachable "break" statements.hniksic2005-04-281-1/+0
|
* [svn] Doc fix.hniksic2005-04-161-1/+1
|
* [svn] Conditonialize including config.h on HAVE_CONFIG_H, not on STANDALONE.hniksic2005-04-111-1/+1
|
* [svn] Avoid explicit 64-bit constants; construct them by multiplication athniksic2005-04-011-3/+2
| | | | compile-time.
* [svn] Improve built-in memory debugger.hniksic2005-03-201-15/+14
|
* [svn] Remove warnings under Borland C.hniksic2005-03-051-0/+1
|
* [svn] Make hash.c compilable outside the source tree.hniksic2004-02-041-24/+33
|
* [svn] Trivial doc fix.hniksic2003-12-191-8/+7
|
* [svn] Better INT_MAX and UCHAR_MAX checks.hniksic2003-11-111-13/+28
|
* [svn] Move the explanation of IdentityHashMap to hash_table_new.hniksic2003-11-071-6/+7
|
* [svn] *** empty log message ***hniksic2003-11-071-6/+6
|
* [svn] Name the source of the integer hash function.hniksic2003-11-071-6/+9
|
* [svn] Mark entries as deleted with the correct marker.hniksic2003-11-071-2/+4
|
* [svn] Use 0xff in hash_table_clear.hniksic2003-11-071-29/+34
|
* [svn] Improve documentation.hniksic2003-11-071-79/+92
|
* [svn] Allow NULL/0 as hash table keys.hniksic2003-11-071-5/+13
|
* [svn] Get rid of ssl_iread/ssl_iwrite. Have the SSL code register itshniksic2003-11-051-20/+5
| | | | routines for reading and writing data.
* [svn] Renamed HASH_FULLNESS_THRESHOLD to HASH_MAX_FULLNESS.hniksic2003-10-311-12/+14
|
* [svn] Use new macros xnew, xnew0, xnew_array, and xnew0_array in various places.hniksic2003-10-311-8/+3
|
* [svn] Make the first argument to hash_table_new a minimal count of items beforehniksic2003-10-091-60/+89
| | | | regrow, not raw size, which is more useful.
* [svn] Add const declarations to hash-table functions.hniksic2003-10-091-5/+5
|