]> git.sur5r.net Git - openldap/blobdiff - libraries/libldap_r/thr_cthreads.c
ITS#7182 Expose the peer address of a connection.
[openldap] / libraries / libldap_r / thr_cthreads.c
index b98a47afa2caa28f736207e6a19a7faa6c73e84f..a79bd32bc7e0dd6e16942c631056d33fd26309a2 100644 (file)
@@ -2,7 +2,7 @@
 /* $OpenLDAP$ */
 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
  *
- * Copyright 1998-2007 The OpenLDAP Foundation.
+ * Copyright 1998-2012 The OpenLDAP Foundation.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -153,4 +153,28 @@ ldap_pvt_thread_self( void )
        return cthread_self();
 }
 
+int
+ldap_pvt_thread_key_create( ldap_pvt_thread_key_t *key )
+{
+       return cthread_keycreate( key );
+}
+
+int
+ldap_pvt_thread_key_destroy( ldap_pvt_thread_key_t key )
+{
+       return( 0 );
+}
+
+int
+ldap_pvt_thread_key_setdata( ldap_pvt_thread_key_t key, void *data )
+{
+       return cthread_setspecific( key, data );
+}
+
+int
+ldap_pvt_thread_key_getdata( ldap_pvt_thread_key_t key, void **data )
+{
+       return cthread_getspecific( key, data );
+}
+
 #endif /* HAVE_MACH_CTHREADS */