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