/* Copyright (C) 2007-2008 Tomash Brechko. All rights reserved. When used to build Perl module: This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available. When used as a standalone library: This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. */ #ifndef DISPATCH_KEY_H #define DISPATCH_KEY_H 1 #include "array.h" #include struct dispatch_state { struct array buckets; double total_weight; int ketama_points; unsigned int prefix_hash; int server_count; }; extern void dispatch_init(struct dispatch_state *state); extern void dispatch_destroy(struct dispatch_state *state); extern void dispatch_set_ketama_points(struct dispatch_state *state, int ketama_points); extern void dispatch_set_prefix(struct dispatch_state *state, const char *prefix, size_t prefix_len); extern int dispatch_add_server(struct dispatch_state *state, const char *host, size_t host_len, const char *port, size_t port_len, double weight, int index); extern int dispatch_key(struct dispatch_state *state, const char *key, size_t key_len); #endif /* ! DISPATCH_KEY_H */