summaryrefslogtreecommitdiff
path: root/lib/gnutls_int.h
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-01-26 16:13:15 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-01-26 16:13:15 +0000
commit410d440b6a9b5d8b133a834a5e6d6b3ad4d6dfd4 (patch)
treea40d2436740b508c8286215e8f556e65a9771e72 /lib/gnutls_int.h
parent54cb6673dc39186539455468a925fdbac222c171 (diff)
downloadgnutls-410d440b6a9b5d8b133a834a5e6d6b3ad4d6dfd4.tar.gz
*** empty log message ***
Diffstat (limited to 'lib/gnutls_int.h')
-rw-r--r--lib/gnutls_int.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/gnutls_int.h b/lib/gnutls_int.h
index b6fd6164c8..7a47d88d7b 100644
--- a/lib/gnutls_int.h
+++ b/lib/gnutls_int.h
@@ -38,7 +38,7 @@
/* It might be a good idea to replace int with void*
* here.
*/
-#define GNUTLS_SOCKET_PTR int
+#define GNUTLS_TRANSPORT_PTR int
typedef const int* GNUTLS_LIST;
@@ -206,8 +206,8 @@ typedef enum ContentType { GNUTLS_CHANGE_CIPHER_SPEC=20, GNUTLS_ALERT,
/* Pull & Push functions defines:
*/
-typedef ssize_t (*PULL_FUNC)(GNUTLS_SOCKET_PTR, void*, size_t);
-typedef ssize_t (*PUSH_FUNC)(GNUTLS_SOCKET_PTR, const void*, size_t);
+typedef ssize_t (*PULL_FUNC)(GNUTLS_TRANSPORT_PTR, void*, size_t);
+typedef ssize_t (*PUSH_FUNC)(GNUTLS_TRANSPORT_PTR, const void*, size_t);
#define GNUTLS_PULL_FUNC PULL_FUNC
#define GNUTLS_PUSH_FUNC PUSH_FUNC