diff options
author | parazyd <parazyd@dyne.org> | 2021-02-28 23:47:05 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2021-03-11 23:47:19 +0100 |
commit | 51367267c8a9f1a840f5e810f8c788e6e03712a5 (patch) | |
tree | c8129640c2a34829b10bc34e9315757e8d81b6dc /libavformat/version.h | |
parent | ed4c2e183bc61414abb421b2bf19ac44e436da06 (diff) | |
download | ffmpeg-51367267c8a9f1a840f5e810f8c788e6e03712a5.tar.gz |
avformat/gopher: Add support for Gopher over TLS
This commit adds a "gophers" handler to the gopher protocol. gophers
is a community-adopted protocol that acts the same way like normal
gopher with the added TLS encapsulation.
The gophers protocol is supported by gopher servers like geomydae(8),
and clients like curl(1), clic(1), and hurl(1).
This commit also adds compilation guards to both gopher and gophers,
since now there are two protocols in the file it makes sense to
have this addition.
Signed-off-by: parazyd <parazyd@dyne.org>
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavformat/version.h')
-rw-r--r-- | libavformat/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/version.h b/libavformat/version.h index 2a2804582c..6f55726afd 100644 --- a/libavformat/version.h +++ b/libavformat/version.h @@ -32,7 +32,7 @@ // Major bumping may affect Ticket5467, 5421, 5451(compatibility with Chromium) // Also please add any ticket numbers that you believe might be affected here #define LIBAVFORMAT_VERSION_MAJOR 58 -#define LIBAVFORMAT_VERSION_MINOR 72 +#define LIBAVFORMAT_VERSION_MINOR 73 #define LIBAVFORMAT_VERSION_MICRO 100 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ |