Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-05-21 | gweb: Add function to check for TLS support | Marcel Holtmann | 1 | -0/+5 | |
2012-04-29 | gweb: Update copyright information | Marcel Holtmann | 1 | -1/+1 | |
2012-04-20 | gweb: don't use deprecated gnutls_session typedef | Lucas De Marchi | 1 | -1/+1 | |
According to gnutls/compat.h, gnutls_session typedef was deprecated since 2.x in favor of gnutls_session_t. Use the new typedef then. | |||||
2011-11-10 | gweb: Use gcc atomics instead glib's ones | Daniel Wagner | 1 | -2/+2 | |
g_atomic_int_exchange_and_add() has been removed from glib 2.30 and g_atomic_int_add() should be used. Though there are still quite a few distros out which do not ship a glib version with g_atomic_int_add(). Instead of maintaing a compatiblilty glib layer we just use the built-in functions for atomic memory access. | |||||
2011-07-24 | gweb: Fix gnutls_priority_set_direct() for various GnuTLS versions | Marcel Holtmann | 1 | -3/+5 | |
2011-07-01 | gweb: Use GnuTLS priority string to provide wide compatibility | Lucas De Marchi | 1 | -1/+2 | |
This priority string will only enable SSL 3.0 and TLS 1.0 as protocols and will disable, via the %COMPAT keyword, several TLS protocol options that are known to cause compatibility problems. Reference: http://www.gnu.org/software/gnutls/manual/html_node/Interoperability.html#Interoperability | |||||
2011-07-01 | gweb: Remove call to deprecated GnuTLS function | Lucas De Marchi | 1 | -0/+2 | |
If we use gnutls 2.12.0 or later it's necessary to call gnutls_transport_set_lowat() to disable the lowat functionality. Since this function is deprecated in new versions of gnutls, call it only if using an older version. | |||||
2010-11-08 | Use file descriptor directly instead of GIOChannel | Marcel Holtmann | 1 | -30/+40 | |
2010-11-07 | Deal with EAGAIN and GnuTLS channels | Marcel Holtmann | 1 | -1/+21 | |
2010-11-07 | Add support for handling non-blocking GnuTLS channels | Marcel Holtmann | 1 | -7/+33 | |
2010-10-30 | Only disable encoding within GIOGnuTLS channel | Marcel Holtmann | 1 | -2/+1 | |
2010-10-30 | Add support for g_io_channel_gnutls_new() function | Marcel Holtmann | 1 | -0/+404 | |