Commit graph

18 commits

Author SHA1 Message Date
John Millikin
90aa9e3473
Bump version to 0.1.6. 2015-05-07 18:45:03 -07:00
Michael Alan Dorman
a8b816730b Fixups for AMP changes. 2015-05-07 18:44:25 -07:00
John Millikin
5588ba43c8
Bump version to 0.1.5. 2013-09-07 12:41:00 -07:00
John Millikin
0d7a60a1cc
Fix a crash due to out-of-order garbage collection of Session values.
GnuTLS has separate initialization and deinitialization procedures for
global and per-session state. Previously, haskell-gnutls used Haskell's
garbage collector (via ForeignPtr) to manage these separate states by
creating a dummy GlobalState type representing an initialized global
state. The Session type contained ForeignPtrs to the global and session
state, with the idea that GC would collect them both at the same time
(albeit in non-determinstic order).

It turns out that session deinitialization *requires* an initialized
global state, and calling gnutls_deinit() after gnutls_global_deinit()
can cause a crash.

This patch solves the crash by removing the GlobalState ForeignPtr hack,
and ensuring that gnutls_global_deinit() is always called after
gnutls_deinit().

Originally reported by Keven McKenzie and Joey Hess.
2013-09-07 12:32:39 -07:00
John Millikin
6456ba5220
Update source-repository locations. 2013-09-07 12:31:23 -07:00
John Millikin
173fd08355
Bump version to 0.1.4. 2012-10-26 19:04:13 -07:00
John Millikin
a89dec4839
Remove maximum dependency version on bytestring. 2012-10-26 19:03:54 -07:00
John Millikin
777d600326
After setting credentials, save a reference to the gnutls credentials
struct to keep them alive for the duration of the session.

Fixes a potential crash when opening connections, reported by Joey Hess.
2012-10-26 19:01:52 -07:00
John Millikin
04064950bd
Remove unused FFI imports from gnutls-extra.
Bump version to 0.1.3.
2012-06-14 18:13:41 -07:00
John Millikin
5001417174
Minor cleanups. Remove maximum version of "transformers" dependency. 2012-05-13 14:28:58 -07:00
John Millikin
12aa431864
Bump version to 0.1.1. 2012-02-23 18:34:13 -08:00
John Millikin
05137fd023
Export 'rehandshake'. 2012-02-23 18:33:43 -08:00
John Millikin
c51832cc43
Fix some compilation errors. 2012-02-23 18:33:26 -08:00
John Millikin
c36fdda7d8
Clean up the Cabal file, and move library source to lib/. 2012-02-23 18:30:29 -08:00
John Millikin
f0f4eef863
Fix build in GHC 7.4. 2012-02-23 18:27:26 -08:00
John Millikin
34a2e4129a
Get rid of `-fno-warn-unused-do-bind` compilation flag. 2011-08-16 21:28:51 -07:00
John Millikin
5d711bbb78
TAG gnutls_0.1 2010-05-03 00:39:07 +00:00
John Millikin
fe1cb6a4bc
Initial import 2010-04-26 16:59:24 +00:00