X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=ossec-hids.git;a=blobdiff_plain;f=src%2Fheaders%2Fhash_op.h;h=9b0777a4b64bec2e5e79282c38dcb85dfd2bbbd7;hp=0ea3fe97d80506812f9c17396de131df2ea4d9d9;hb=6ef2f786c6c8ead94841b5f93baf9f43421f08c8;hpb=301048b51990573e58a30dc4a5bb4ec285cad554 diff --git a/src/headers/hash_op.h b/src/headers/hash_op.h index 0ea3fe9..9b0777a 100755 --- a/src/headers/hash_op.h +++ b/src/headers/hash_op.h @@ -1,4 +1,5 @@ -/* @(#) $Id$ */ +/* @(#) $Id: ./src/headers/hash_op.h, 2011/09/08 dcid Exp $ + */ /* Copyright (C) 2009 Trend Micro Inc. * All rights reserved. @@ -11,9 +12,9 @@ * License details at the LICENSE file included with OSSEC or * online at: http://www.ossec.net/en/licensing.html */ - + /* Common API for dealing with directory trees */ - + #ifndef _OS_HASHOP #define _OS_HASHOP @@ -23,9 +24,9 @@ typedef struct _OSHashNode { struct _OSHashNode *next; - + void *key; - void *data; + void *data; }OSHashNode; @@ -34,7 +35,7 @@ typedef struct _OSHash unsigned int rows; unsigned int initial_seed; unsigned int constant; - + OSHashNode **table; }OSHash; @@ -54,7 +55,7 @@ OSHash *OSHash_Create(); * Frees the memory used by the hash. */ void *OSHash_Free(OSHash *self); - + /** void OSHash_Add(OSHash *hash, char *key, void *data) @@ -64,6 +65,7 @@ void *OSHash_Free(OSHash *self); * Key must not be NULL. */ int OSHash_Add(OSHash *hash, char *key, void *data); +int OSHash_Update(OSHash *hash, char *key, void *data); /** void *OSHash_Get(OSHash *self, char *key)