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))
Exemple #2
0
 def allow_unsecured_client(self):
     return self._check(pn_ssl_domain_allow_unsecured_client(self._domain))
Exemple #3
0
 def allow_unsecured_client(self):
     return self._check(pn_ssl_domain_allow_unsecured_client(self._domain))