diff --git a/NEWS b/NEWS index 22a52b6..7fd7333 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,4 @@ 22.09.2013: Autotools choosen to be a build be. 24.11.2014: Importing on git (askele.com). 11.03.2015: Windows porting. +04.06.2015: version 0.2.0 the new featured branch diff --git a/configure.ac b/configure.ac index bab26fe..f03444b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(libsntl, 0.2.0) +AC_INIT(libsntl, 0.2.1) #LDFLAGS="$LDFLAGS -L/mingw/lib -L/local/lib" diff --git a/debian/changelog b/debian/changelog index 7a4f447..3df100f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,11 +1,17 @@ +libsntl (0.2.1) stable; urgency=low + + * Initial release (Closes: #nnnn) + + -- Alexander Vdolainen Thu, 11 Jun 2015 03:37:48 +0200 + libsntl (0.2.0) stable; urgency=low * Initial release (Closes: #nnnn) - -- Alexander Vdolainen Mon, 24 Nov 2014 11:52:48 +0200 + -- Alexander Vdolainen Thu, 04 Jun 2015 16:00:00 +0200 libsntl (0.1.0) stable; urgency=low * Initial release (Closes: #nnnn) - -- Alexander Vdolainen Mon, 24 Nov 2014 11:52:48 +0200 + -- Alexander Vdolainen Mon, 24 Nov 2014 11:52:48 +0200 diff --git a/debian/files b/debian/files index 04196d2..164faed 100644 --- a/debian/files +++ b/debian/files @@ -1,2 +1,2 @@ -libsntl-dev_0.2.0_amd64.deb libdevel extra -libsntl_0.2.0_amd64.deb libs extra +libsntl-dev_0.2.1_amd64.deb libdevel extra +libsntl_0.2.1_amd64.deb libs extra diff --git a/include/sntl/connection.h b/include/sntl/connection.h index 9caa0f2..f784034 100644 --- a/include/sntl/connection.h +++ b/include/sntl/connection.h @@ -206,6 +206,10 @@ extern conn_sys_t *conn_sys; /* an old obsolete method */ #define connections_subsystem_setrpclist_function(a) connections_setrpclist_function(conn_sys, a) +#define connections_set_priv(c, p) (c)->priv = (void *)p + +#define connections_get_priv(c) (c)->priv + #ifdef __cplusplus extern "C" { #endif