mirror of
https://github.com/pocoproject/poco.git
synced 2025-11-23 21:53:49 +01:00
merge Unix Domain Sockets support and other changes from develop
This commit is contained in:
@@ -123,7 +123,7 @@ SyslogTest::~SyslogTest()
|
||||
void SyslogTest::testListener()
|
||||
{
|
||||
Poco::AutoPtr<RemoteSyslogChannel> channel = new RemoteSyslogChannel();
|
||||
channel->setProperty("loghost", "localhost:51400");
|
||||
channel->setProperty("loghost", "127.0.0.1:51400");
|
||||
channel->open();
|
||||
Poco::AutoPtr<RemoteSyslogListener> listener = new RemoteSyslogListener(51400);
|
||||
listener->open();
|
||||
@@ -148,7 +148,7 @@ void SyslogTest::testListener()
|
||||
void SyslogTest::testChannelOpenClose()
|
||||
{
|
||||
Poco::AutoPtr<RemoteSyslogChannel> channel = new RemoteSyslogChannel();
|
||||
channel->setProperty("loghost", "localhost:51400");
|
||||
channel->setProperty("loghost", "127.0.0.1:51400");
|
||||
channel->open();
|
||||
Poco::AutoPtr<RemoteSyslogListener> listener = new RemoteSyslogListener(51400);
|
||||
listener->open();
|
||||
@@ -187,7 +187,7 @@ void SyslogTest::testChannelOpenClose()
|
||||
void SyslogTest::testOldBSD()
|
||||
{
|
||||
Poco::AutoPtr<RemoteSyslogChannel> channel = new RemoteSyslogChannel();
|
||||
channel->setProperty("loghost", "localhost:51400");
|
||||
channel->setProperty("loghost", "127.0.0.1:51400");
|
||||
channel->setProperty("format", "bsd");
|
||||
channel->open();
|
||||
Poco::AutoPtr<RemoteSyslogListener> listener = new RemoteSyslogListener(51400);
|
||||
|
||||
Reference in New Issue
Block a user