These are ssize_t not size_t
The return negative for error cases and with newer GHCs lying causes a problem.
This commit is contained in:
parent
f3c719ae44
commit
d1da25f3a0
1 changed files with 4 additions and 3 deletions
|
@ -21,6 +21,7 @@ module Network.Protocol.TLS.GNU.Foreign where
|
||||||
|
|
||||||
import Foreign
|
import Foreign
|
||||||
import Foreign.C
|
import Foreign.C
|
||||||
|
import System.Posix.Types
|
||||||
|
|
||||||
-- Type aliases {{{
|
-- Type aliases {{{
|
||||||
|
|
||||||
|
@ -224,13 +225,13 @@ foreign import ccall safe "gnutls_record_get_max_size"
|
||||||
gnutls_record_get_max_size :: Session -> IO CSize
|
gnutls_record_get_max_size :: Session -> IO CSize
|
||||||
|
|
||||||
foreign import ccall safe "gnutls_record_recv"
|
foreign import ccall safe "gnutls_record_recv"
|
||||||
gnutls_record_recv :: Session -> Ptr a -> CSize -> IO CSize
|
gnutls_record_recv :: Session -> Ptr a -> CSize -> IO CSsize
|
||||||
|
|
||||||
foreign import ccall safe "gnutls_record_send"
|
foreign import ccall safe "gnutls_record_send"
|
||||||
gnutls_record_send :: Session -> Ptr a -> CSize -> IO CSize
|
gnutls_record_send :: Session -> Ptr a -> CSize -> IO CSsize
|
||||||
|
|
||||||
foreign import ccall safe "gnutls_record_set_max_size"
|
foreign import ccall safe "gnutls_record_set_max_size"
|
||||||
gnutls_record_set_max_size :: Session -> CSize -> IO CSize
|
gnutls_record_set_max_size :: Session -> CSize -> IO CSsize
|
||||||
|
|
||||||
-- }}}
|
-- }}}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue