]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
removed the old set_priority functions.
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Thu, 10 Feb 2011 09:21:23 +0000 (10:21 +0100)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Thu, 10 Feb 2011 09:21:23 +0000 (10:21 +0100)
lib/gnutlsxx.cpp
lib/includes/gnutls/gnutlsxx.h

index 400d87bed8a8b7eb26bb63dd6faaa78e40f1d196..b10dd343b16bc7fa607cdfc9efc0cd1ca55c135f 100644 (file)
@@ -161,37 +161,6 @@ namespace gnutls
   }
 
 
-  void session::set_cipher_priority (const int *list)
-  {
-    RETWRAP (gnutls_cipher_set_priority (s, list));
-  }
-
-  void session::set_mac_priority (const int *list)
-  {
-    RETWRAP (gnutls_mac_set_priority (s, list));
-  }
-
-  void session::set_compression_priority (const int *list)
-  {
-    RETWRAP (gnutls_compression_set_priority (s, list));
-  }
-
-  void session::set_kx_priority (const int *list)
-  {
-    RETWRAP (gnutls_kx_set_priority (s, list));
-  }
-
-  void session::set_protocol_priority (const int *list)
-  {
-    RETWRAP (gnutls_protocol_set_priority (s, list));
-  }
-
-  void session::set_certificate_type_priority (const int *list)
-  {
-    RETWRAP (gnutls_certificate_type_set_priority (s, list));
-  }
-
-
 /* if you just want some defaults, use the following.
  */
   void session::set_priority (const char *prio, const char **err_pos)
index 70f326419cde507324460fc89e55e472ef0c68d0..db51a6bbccb29c8e05855aafbb33880dcb9ecdce 100644 (file)
@@ -133,13 +133,6 @@ namespace gnutls
                   size_t seed_size, const char *seed,
                   size_t outsize, char *out);
 
-    void set_cipher_priority (const int *list);
-    void set_mac_priority (const int *list);
-    void set_compression_priority (const int *list);
-    void set_kx_priority (const int *list);
-    void set_protocol_priority (const int *list);
-    void set_certificate_type_priority (const int *list);
-
     /* if you just want some defaults, use the following.
      */
     void set_priority (const char *prio, const char **err_pos);