X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=docs%2Fmemcached_servers.pod;h=2fbd1a6632ce7a2e119d623056a9cdd449fb4be7;hb=c6f53a5dccd7ca93a369d2e4dffa846eacf265e2;hp=3e471bce1b6388b8ca83d17fb607aa6cc9b2bb95;hpb=7d9255c986d5e9a395bd510ca7b01519736f33e1;p=m6w6%2Flibmemcached diff --git a/docs/memcached_servers.pod b/docs/memcached_servers.pod index 3e471bce..2fbd1a66 100755 --- a/docs/memcached_servers.pod +++ b/docs/memcached_servers.pod @@ -20,6 +20,11 @@ C Client Library for memcached (libmemcached, -lmemcached) char *hostname, unsigned int port); + memcached_return + memcached_server_add_unix_socket (memcached_st *ptr, + char *hostname, + unsigned int port); + memcached_return memcached_server_push (memcached_st *ptr, memcached_server_st *list); @@ -42,6 +47,11 @@ memcached_server_add() pushes a single server into the C structure. This server will be placed at the end. Duplicate servers are allowed, so duplication is not checked. +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. + memcached_server_push() pushes an array of C into the C structure. These servers will be placed at the end. Duplicate servers are allowed, so duplication is not checked. A