1

接続された StreamSocket を SecureStreamSocket にアタッチしようとしています。

class MyConnection : public TCPServerConnection {
  private:
    Context::Ptr m_pContext;
  public:
    MyConnection(const StreamSocket& socket, Context::Ptr pContext)
    : TCPServerConnection(socket),
      m_pContext(pContext)
    {
    }

    virtual void run() {
      SecureStreamSocket secureSock(SecureStreamSocket::attach(socket(), m_pContext));
      socket() = secureSock;
    }
}

しかし、私は SSLException を持っています:

SSL Exception [N4Poco3Net12SSLExceptionE]: error:140C5042:SSL routines:SSL_UNDEFINED_FUNCTION:called a function you should not call

SSL ライブラリの初期化が実行されました:

Poco::Net::initializeSSL(); // inside Application::initialize

SSL 初期化後のコンテキスト初期化:

 Poco::Net::Context::Ptr pContext =
      new Poco::Net::Context(
          Poco::Net::Context::SERVER_USE,
          "server.key",
          "server.crt",
          "/path/to/certs/"
          );
4

1 に答える 1

0

SecureStreamSocket::attach(...) を次のように書き直すことができます。

SecureStreamSocket SecureStreamSocket::attach(const StreamSocket& streamSocket, Context::Ptr pContext)
{
  SecureStreamSocketImpl* pImpl = new SecureStreamSocketImpl(static_cast<StreamSocketImpl*>streamSocket.impl()), pContext);
  SecureStreamSocket result(pImpl);
  if (pImpl->context()->isForServerUse())
      pImpl->acceptSSL();
  else
      pImpl->connectSSL();
  return result;
}

この投稿をありがとう。現在、サーバーとクライアントでうまく機能します。

于 2013-10-04T10:08:29.653 に答える