summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_ciph.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/ssl_ciph.c')
-rw-r--r--src/lib/libssl/ssl_ciph.c20
1 files changed, 19 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl_ciph.c b/src/lib/libssl/ssl_ciph.c
index 0ba66cc89f..05fa290edf 100644
--- a/src/lib/libssl/ssl_ciph.c
+++ b/src/lib/libssl/ssl_ciph.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl_ciph.c,v 1.59 2014/07/10 08:51:15 tedu Exp $ */ 1/* $OpenBSD: ssl_ciph.c,v 1.60 2014/07/10 09:26:08 jsing Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -1847,3 +1847,21 @@ SSL_CIPHER_get_id(const SSL_CIPHER *c)
1847{ 1847{
1848 return c->id; 1848 return c->id;
1849} 1849}
1850
1851void *
1852SSL_COMP_get_compression_methods(void)
1853{
1854 return NULL;
1855}
1856
1857int
1858SSL_COMP_add_compression_method(int id, void *cm)
1859{
1860 return 1;
1861}
1862
1863const char *
1864SSL_COMP_get_name(const void *comp)
1865{
1866 return NULL;
1867}