aboutsummaryrefslogtreecommitdiffstats
path: root/src/tls/tls_record.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tls/tls_record.h')
-rw-r--r--src/tls/tls_record.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tls/tls_record.h b/src/tls/tls_record.h
index 5de17033a..3d3e4d7a7 100644
--- a/src/tls/tls_record.h
+++ b/src/tls/tls_record.h
@@ -30,10 +30,10 @@ class Session_Keys;
class BOTAN_DLL Record_Writer
{
public:
- void send(byte type, const byte input[], size_t length);
+ void send_array(byte type, const byte input[], size_t length);
void send(byte type, const std::vector<byte>& input)
- { send(type, &input[0], input.size()); }
+ { send_array(type, &input[0], input.size()); }
void send_alert(const Alert& alert);