コード例 #1
0
    def allow_unsecured_client(self):
        """
        Permit a server to accept connection requests from non-SSL clients.

        This configures the server to "sniff" the incoming client data stream,
        and dynamically determine whether SSL/TLS is being used.  This option
        is disabled by default: only clients using SSL/TLS are accepted.

        :raise: :exc:`SSLException` if there is any Proton error
        """
        return self._check(pn_ssl_domain_allow_unsecured_client(self._domain))
コード例 #2
0
ファイル: _transport.py プロジェクト: apache/qpid-proton
 def allow_unsecured_client(self):
     return self._check(pn_ssl_domain_allow_unsecured_client(self._domain))
コード例 #3
0
ファイル: _transport.py プロジェクト: archerabi/qpid-proton
 def allow_unsecured_client(self):
     return self._check(pn_ssl_domain_allow_unsecured_client(self._domain))