mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 04:28:20 +00:00
Remove all of the random single-file deprecations
These are the changes that don't require a ton of changes to other files outside of the original removal.
This commit is contained in:
parent
7e9d89db0a
commit
0618be792f
270 changed files with 36 additions and 4632 deletions
10
src/Base64.h
10
src/Base64.h
|
@ -4,8 +4,6 @@
|
|||
#include <string>
|
||||
|
||||
namespace zeek { class String; }
|
||||
using BroString [[deprecated("Remove in v4.1. Use zeek::String instead.")]] = zeek::String;
|
||||
|
||||
ZEEK_FORWARD_DECLARE_NAMESPACED(Connection, zeek);
|
||||
|
||||
namespace zeek::detail {
|
||||
|
@ -66,11 +64,3 @@ String* decode_base64(const String* s, const String* a = nullptr, Connection* co
|
|||
String* encode_base64(const String* s, const String* a = nullptr, Connection* conn = nullptr);
|
||||
|
||||
} // namespace zeek::detail
|
||||
|
||||
using Base64Converter [[deprecated("Remove in v4.1. Use zeek::detail::Base64Converter.")]] = zeek::detail::Base64Converter;
|
||||
|
||||
// These can't be constexpr auto definitions due to the default parameters.
|
||||
[[deprecated("Remove in v4.1. Use zeek::detail::decode_base64.")]]
|
||||
zeek::String* decode_base64(const zeek::String* s, const zeek::String* a = nullptr, zeek::Connection* conn = nullptr);
|
||||
[[deprecated("Remove in v4.1. Use zeek::detail::encode_base64.")]]
|
||||
zeek::String* encode_base64(const zeek::String* s, const zeek::String* a = nullptr, zeek::Connection* conn = nullptr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue