X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=docs%2Fmemcached_servers.pod;h=f4f789d4185938a8b9c5a7c64798a51f765c70d6;hb=0b0a30bb53359a9aff8afff1a45209c4be7b8881;hp=a4495382683a7c32e89311e28e6fbe1f7746c320;hpb=07999ea4e52b8a80ea66376ec22768c32add7f29;p=awesomized%2Flibmemcached diff --git a/docs/memcached_servers.pod b/docs/memcached_servers.pod index a4495382..f4f789d4 100644 --- a/docs/memcached_servers.pod +++ b/docs/memcached_servers.pod @@ -15,31 +15,32 @@ C Client Library for memcached (libmemcached, -lmemcached) memcached_server_st * memcached_server_list (memcached_st *ptr); - memcached_return + memcached_return_t memcached_server_add (memcached_st *ptr, const char *hostname, - unsigned int port); + in_port_t port); - memcached_return + memcached_return_t memcached_server_add_udp (memcached_st *ptr, const char *hostname, - unsigned int port); + in_port_t port); - memcached_return + memcached_return_t memcached_server_add_unix_socket (memcached_st *ptr, const char *socket); - memcached_return + memcached_return_t memcached_server_push (memcached_st *ptr, memcached_server_st *list); memcached_server_st * - memcached_server_by_key (memcached_st *ptr, - const char *key, size_t key_length, - memcached_return *error); - memcached_server_st * + memcached_server_by_key (memcached_st *ptr, + const char *key, size_t key_length, + memcached_return_t *error); + + memcached_server_st * memcached_server_get_last_disconnect (memcached_st *ptr) - + =head1 DESCRIPTION @@ -58,17 +59,17 @@ currently used structure). memcached_server_add() pushes a single TCP server into the C structure. This server will be placed at the end. Duplicate servers are allowed, so duplication is not checked. Executing this function with the -C behavior set will result in a +C behavior set will result in a C. memcached_server_add_udp() pushes a single UDP server into the C structure. This server will be placed at the end. Duplicate servers are allowed, so duplication is not checked. Executing this function with out -setting the C behavior will result in a +setting the C behavior will result in a C. -memcached_server_add_unix_socket() pushes a single UNIX socket into the -C structure. This UNIX socket will be placed at the end. +memcached_server_add_unix_socket() pushes a single UNIX socket into the +C structure. This UNIX socket will be placed at the end. Duplicate servers are allowed, so duplication is not checked. The length of the filename must be one character less then MEMCACHED_MAX_HOST_LENGTH. @@ -84,9 +85,9 @@ from its original structure and must be freed. If NULL is returned you should consult *error. The returning structure should be freed with memcached_server_free(). -memcached_server_get_last_disconnect() returns a pointer to the last server -for which there was a connection problem. It does not mean this particular -server is currently dead but if the library is reporting a server is, +memcached_server_get_last_disconnect() returns a pointer to the last server +for which there was a connection problem. It does not mean this particular +server is currently dead but if the library is reporting a server is, the returned server is a very good candidate. =head1 RETURN @@ -95,7 +96,7 @@ Varies, see particular functions. =head1 HOME -To find out more information please check: +To find out more information please check: L =head1 AUTHOR