diff options
author | Simon Josefsson <simon@josefsson.org> | 2007-02-22 07:43:40 +0000 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2007-02-22 07:43:40 +0000 |
commit | 984d0b3ef6433f294c1a62f4fb70d20f9be6140c (patch) | |
tree | dc4473c9b672480289fdade262b33e8aec925b97 /lib/gnutls_extensions.h | |
parent | d7ef8ae0e99f3b0450590185e6e27096d9a68f98 (diff) | |
download | gnutls-984d0b3ef6433f294c1a62f4fb70d20f9be6140c.tar.gz |
Add prototype for _gnutls_extension_list_check, we use it in
ext_authz.c.
Diffstat (limited to 'lib/gnutls_extensions.h')
-rw-r--r-- | lib/gnutls_extensions.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/gnutls_extensions.h b/lib/gnutls_extensions.h index 41eb9d6ea9..f048361c8b 100644 --- a/lib/gnutls_extensions.h +++ b/lib/gnutls_extensions.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation + * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2007 Free Software Foundation * * Author: Nikos Mavroyanopoulos * @@ -28,6 +28,7 @@ const char *_gnutls_extension_get_name (uint16_t type); int _gnutls_parse_extensions (gnutls_session_t, const opaque *, int); int _gnutls_gen_extensions (gnutls_session_t session, opaque * data, size_t data_size); +int _gnutls_extension_list_check (gnutls_session_t session, uint16_t type); typedef int (*ext_recv_func) (gnutls_session_t, const opaque *, size_t); /* recv data */ typedef int (*ext_send_func) (gnutls_session_t, opaque *, size_t); /* send data */ |