History log of /memcached-1.4.29/sasl_defs.c (Results 1 – 7 of 7)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: 1.6.32, 1.6.31, 1.6.30, 1.6.29, 1.6.28, 1.6.27, 1.6.26, 1.6.25, 1.6.24, 1.6.23, 1.6.22, 1.6.21, 1.6.20, 1.6.19, 1.6.18, 1.6.17, 1.6.16, 1.6.15, 1.6.14, 1.6.13, 1.6.12, 1.6.11, 1.6.10, 1.6.9, 1.6.8, 1.6.7, 1.6.6, 1.6.5, 1.6.4, 1.6.3, 1.6.2, 1.6.1, 1.6.0, 1.5.22, 1.5.21, 1.5.20, 1.5.19, 1.5.18, 1.5.17, 1.5.16, 1.5.15, 1.5.14, 1.5.13, 1.5.12, 1.5.11, 1.5.10, 1.5.9, 1.5.8, 1.5.7, 1.5.6, 1.5.5, 1.5.4, 1.5.3, 1.5.2, 1.5.1, 1.5.0, 1.4.39, 1.4.38, 1.4.37, flash-with-wbuf-stack, 1.4.36, 1.4.35, 1.4.34, 1.4.33, 1.4.32, 1.4.31, 1.4.30, 1.4.29, 1.4.28, 1.4.27, 1.4.26, 1.4.25, 1.4.24, 1.4.23, 1.4.22, 1.4.21, 1.4.20, 1.4.19, 1.4.18, 1.4.17, 1.4.16
# b4add044 18-Sep-2012 Gabriel A. Samfira <[email protected]>

fix enable-sasl-pwdb

* using --enable-sasl-pwdb will make the compile fail with:

sasl_defs.c:148:4: error: initialization from incompatible pointer type [-Werror]


Revision tags: 1.4.15, 1.4.14, 1.4.13, 1.4.12
# dece7f87 01-Feb-2012 Dustin Sallings <[email protected]>

Better detection of sasl_callback_ft


# b0a858ce 28-Jan-2012 Dustin Sallings <[email protected]>

Specify hostname in sasl_server_new.

saslpasswd2 does something a little magical when initializing the
structure that's different from what happens if you just pass NULL.

The magic is too great for

Specify hostname in sasl_server_new.

saslpasswd2 does something a little magical when initializing the
structure that's different from what happens if you just pass NULL.

The magic is too great for the tests as is, so this code does the same
thing saslpasswd2 does to determine the fqdn.

show more ...


# 39d59a90 28-Jan-2012 Dustin Sallings <[email protected]>

build fix: Define sasl_callback_ft on older versions of sasl.

They just changed this randomly with no way to really detect it. You
can read about it here:

http://lists.andrew.cmu.edu/pipermail/cy

build fix: Define sasl_callback_ft on older versions of sasl.

They just changed this randomly with no way to really detect it. You
can read about it here:

http://lists.andrew.cmu.edu/pipermail/cyrus-sasl/2011-September/002340.html

show more ...


Revision tags: 1.4.11, 1.4.11-rc1, 1.4.11-beta1, 1.4.10, 1.4.9, 1.4.9-beta1
# ee486ab2 04-Oct-2011 Steve Wills <[email protected]>

Fix to build with cyrus sasl 2.1.25


Revision tags: 1.4.8, 1.4.8-rc1, 1.4.7, 1.4.7-rc1, 1.4.6, 1.4.6-rc1, 1.6.0-beta1, 1.4.5
# 7a221d95 24-Feb-2010 Trond Norbye <[email protected]>

Add support for --enable-sasl-pwdb

--enable-sasl-pwdb allows memcached to use it's own password file and
verify a plaintext password.

The file is specified with the environment variable
MEMCACHED_S

Add support for --enable-sasl-pwdb

--enable-sasl-pwdb allows memcached to use it's own password file and
verify a plaintext password.

The file is specified with the environment variable
MEMCACHED_SASL_PWDB, and is a plain text file with the following
syntax:

username:password

Please note that you have to specify "mech_list: plain" in your sasl
config file for this to work.

Ex:
echo "mech_list: plain" > memcached.conf
echo "myname:mypass" > /tmp/memcached-sasl-db
export MEMCACHED_SASL_PWDB=/tmp/memcached-sasl-db
export SASL_CONF_PATH=`pwd`/memcached.conf
./memcached -S -v

and you should be able to use your favorite memcached client with sasl
support to connect to the server.

(Please note that not all SASL implementations support
SASL_CB_GETCONF, so you may have to install the sasl config
(memcached.conf) to the systemwide location)

show more ...


Revision tags: 1.4.4, 1.4.3, 1.4.3-rc2, 1.4.3-rc1, 1.4.2, 1.4.2-rc1, 1.4.1, 1.4.1-rc1, 1.4-rc1, 1.4.0, 1.4.0-rc1
# f1307c4d 10-May-2009 Dustin Sallings <[email protected]>

SASL auth support.