diff options
author | jsing <> | 2014-07-10 09:26:08 +0000 |
---|---|---|
committer | jsing <> | 2014-07-10 09:26:08 +0000 |
commit | e44978c178aed8163999a272aef221157cbaf6c6 (patch) | |
tree | e6e11b5294468c45cd25845145781c36c981eb01 /src/lib/libssl/ssl_ciph.c | |
parent | e1e4df7c391a5c85ead550f2b5905317b011f66a (diff) | |
download | openbsd-e44978c178aed8163999a272aef221157cbaf6c6.tar.gz openbsd-e44978c178aed8163999a272aef221157cbaf6c6.tar.bz2 openbsd-e44978c178aed8163999a272aef221157cbaf6c6.zip |
Put back some parts of the public SSL API that should not have been
completely decompressed.
Diffstat (limited to 'src/lib/libssl/ssl_ciph.c')
-rw-r--r-- | src/lib/libssl/ssl_ciph.c | 20 |
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 | |||
1851 | void * | ||
1852 | SSL_COMP_get_compression_methods(void) | ||
1853 | { | ||
1854 | return NULL; | ||
1855 | } | ||
1856 | |||
1857 | int | ||
1858 | SSL_COMP_add_compression_method(int id, void *cm) | ||
1859 | { | ||
1860 | return 1; | ||
1861 | } | ||
1862 | |||
1863 | const char * | ||
1864 | SSL_COMP_get_name(const void *comp) | ||
1865 | { | ||
1866 | return NULL; | ||
1867 | } | ||