From 84e570bbbb1188d2bcd3f03ff519fbc9217e624a Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Sun, 16 Mar 2014 22:52:40 +0100 Subject: Connection trace facility. --- tests/net/smtp/SMTPCommandTest.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tests/net/smtp/SMTPCommandTest.cpp') diff --git a/tests/net/smtp/SMTPCommandTest.cpp b/tests/net/smtp/SMTPCommandTest.cpp index 9480948c..9b3daa73 100644 --- a/tests/net/smtp/SMTPCommandTest.cpp +++ b/tests/net/smtp/SMTPCommandTest.cpp @@ -231,8 +231,10 @@ VMIME_TEST_SUITE_BEGIN(SMTPCommandTest) { vmime::shared_ptr cmd = SMTPCommand::createCommand("MY_COMMAND param1 param2"); + vmime::shared_ptr tracer; vmime::shared_ptr sok = vmime::make_shared (); - cmd->writeToSocket(sok); + + cmd->writeToSocket(sok, tracer); vmime::string response; sok->localReceive(response); -- cgit