summaryrefslogtreecommitdiffstats
path: root/source4/lib/tls/tls.h
Commit message (Collapse)AuthorAgeFilesLines
* s4-lib/tls: remove unused tls_support()Andrew Bartlett2012-02-101-5/+0
| | | | | | Found by callcatcher: http://www.skynet.ie/~caolan/Packages/callcatcher.html Andrew Bartlett
* s4:lib/tls: fix enabled logic in tstream_tls_params_server()Stefan Metzmacher2010-10-081-1/+1
| | | | metze
* s4:lib/tls: add gnutls backend for tstreamStefan Metzmacher2010-09-281-1/+47
| | | | | | | metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Tue Sep 28 02:29:42 UTC 2010 on sn-devel-104
* s4:lib/tevent: rename structsStefan Metzmacher2008-12-291-2/+2
| | | | | | | | | | | | | | | | | | | | list="" list="$list event_context:tevent_context" list="$list fd_event:tevent_fd" list="$list timed_event:tevent_timer" for s in $list; do o=`echo $s | cut -d ':' -f1` n=`echo $s | cut -d ':' -f2` r=`git grep "struct $o" |cut -d ':' -f1 |sort -u` files=`echo "$r" | grep -v source3 | grep -v nsswitch | grep -v packaging4` for f in $files; do cat $f | sed -e "s/struct $o/struct $n/g" > $f.tmp mv $f.tmp $f done done metze
* r26238: Add a loadparm context parameter to torture_context, remove more ↵Jelmer Vernooij2007-12-211-2/+5
| | | | | | uses of global_loadparm. (This used to be commit a33a5530545086b81a3b205aa109dff11c546926)
* r24712: No longer expose the 'BOOL' data type in any interfaces.Jelmer Vernooij2007-10-101-2/+2
| | | | (This used to be commit 1ce32673d960c8b05b6c1b1b99e1976a402417ae)
* r23792: convert Samba4 to GPLv3Andrew Tridgell2007-10-101-3/+2
| | | | | | There are still a few tidyups of old FSF addresses to come (in both s3 and s4). More commits soon. (This used to be commit fcf38a38ac691abd0fa51b89dc951a08e89fdafa)
* r15829: we need to include socket.h before we can use enum socket_typeStefan Metzmacher2007-10-101-0/+2
| | | | | | | this fixes a compiler warning metze (This used to be commit dbf82fff10f1b5c3894b9600d98f81ee10e3d876)
* r15400: Move the TLS code behind the socket interface.Andrew Bartlett2007-10-101-20/+6
| | | | | | | | | | | This reduces caller complexity, because the TLS code is now called just like any other socket. (A new socket context is returned by the tls_init_server and tls_init_client routines). When TLS is not available, the original socket is returned. Andrew Bartlett (This used to be commit 09b2f30dfa7a640f5187b4933204e9680be61497)
* r11596: switched the libcli/raw/ code over to using the lib/stream/ genericAndrew Tridgell2007-10-101-0/+4
| | | | | | packet parsing code. This simplifies the logic in the raw client library a fair bit (This used to be commit f8d43f1f67876360e1295d85a3c3702d1d60ed7b)
* r7769: added client support in the tls library apiAndrew Tridgell2007-10-101-0/+7
| | | | (This used to be commit 71ee6a1df542b95c61217de71e6f56b8ce9d81b5)
* r7751: only enable tls on the ldaps port in ldap server, and reject non-tlsAndrew Tridgell2007-10-101-1/+2
| | | | | connections on that port (This used to be commit 30da6a1cc41308a16a486111887f45bcf598f064)
* r7747: - simplified the ldap server buffer handlingAndrew Tridgell2007-10-101-0/+5
| | | | | | | | | | - got rid of the special cases for sasl buffers - added a tls_socket_pending() call to determine how much data is waiting on a tls connection - removed the attempt at async handling of ldap calls. The buffers/sockets are all async, but the calls themselves are sync. (This used to be commit 73cb4aad229d08e17e22d5792580bd43a61b142a)
* r7742: abstracted out the tls code from the web server, so that our other ↵Andrew Tridgell2007-10-101-0/+61
servers can easily become tls enabled. This will be used to add support for ldaps (This used to be commit 950500f603725349d2a0e22878e83dd1b5975f9f)