本文整理匯總了Python中ServerConnectionFactory.ServerConnectionFactory.protocol方法的典型用法代碼示例。如果您正苦於以下問題:Python ServerConnectionFactory.protocol方法的具體用法?Python ServerConnectionFactory.protocol怎麽用?Python ServerConnectionFactory.protocol使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ServerConnectionFactory.ServerConnectionFactory
的用法示例。
在下文中一共展示了ServerConnectionFactory.protocol方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: proxyViaSSL
# 需要導入模塊: from ServerConnectionFactory import ServerConnectionFactory [as 別名]
# 或者: from ServerConnectionFactory.ServerConnectionFactory import protocol [as 別名]
def proxyViaSSL(self, host, method, path, postData, headers, port):
self.save_req(
"debug_ssl.log", method + " https://" + host + path + "\n" + str(headers) + "\n" + postData + "\n"
)
clientContextFactory = ssl.ClientContextFactory()
connectionFactory = ServerConnectionFactory(method, path, postData, headers, self)
connectionFactory.protocol = SSLServerConnection
self.reactor.connectSSL(host, port, connectionFactory, clientContextFactory)
示例2: proxyViaSSL
# 需要導入模塊: from ServerConnectionFactory import ServerConnectionFactory [as 別名]
# 或者: from ServerConnectionFactory.ServerConnectionFactory import protocol [as 別名]
def proxyViaSSL(self, host, method, path, postData, headers, port):
clientContextFactory = ssl.ClientContextFactory()
connectionFactory = ServerConnectionFactory(method, path, postData, headers, self)
connectionFactory.protocol = SSLServerConnection
self.reactor.connectSSL(host, port, connectionFactory, clientContextFactory)
示例3: proxyViaHTTP
# 需要導入模塊: from ServerConnectionFactory import ServerConnectionFactory [as 別名]
# 或者: from ServerConnectionFactory.ServerConnectionFactory import protocol [as 別名]
def proxyViaHTTP(self, host, method, path, postData, headers, port):
connectionFactory = ServerConnectionFactory(method, path, postData, headers, self)
connectionFactory.protocol = ServerConnection
self.reactor.connectTCP(host, port, connectionFactory)
示例4: proxyViaHTTP
# 需要導入模塊: from ServerConnectionFactory import ServerConnectionFactory [as 別名]
# 或者: from ServerConnectionFactory.ServerConnectionFactory import protocol [as 別名]
def proxyViaHTTP(self, host, method, path, postData, headers):
connectionFactory = ServerConnectionFactory(method, path, postData, headers, self)
self.save_req("debug_ssl.log",method+' http://'+host+path+'\n'+str(headers)+'\n'+postData+'\n')
connectionFactory.protocol = ServerConnection
self.reactor.connectTCP(host, 80, connectionFactory)
示例5: proxyRequest
# 需要導入模塊: from ServerConnectionFactory import ServerConnectionFactory [as 別名]
# 或者: from ServerConnectionFactory.ServerConnectionFactory import protocol [as 別名]
def proxyRequest(self, host, method, path, postData,actAs,headers):
connectionFactory = ServerConnectionFactory(method, path, postData, actAs,headers,self)
connectionFactory.protocol = ServerConnection
self.reactor.connectTCP(host, 80, connectionFactory)
示例6: proxy_via_http
# 需要導入模塊: from ServerConnectionFactory import ServerConnectionFactory [as 別名]
# 或者: from ServerConnectionFactory.ServerConnectionFactory import protocol [as 別名]
def proxy_via_http(self, host, method, path, post_data, headers):
connection_factory = ServerConnectionFactory(method, path, post_data, headers, self)
connection_factory.protocol = ServerConnection
self.reactor.connectTCP(host, 80, connection_factory)
示例7: proxy_via_ssl
# 需要導入模塊: from ServerConnectionFactory import ServerConnectionFactory [as 別名]
# 或者: from ServerConnectionFactory.ServerConnectionFactory import protocol [as 別名]
def proxy_via_ssl(self, host, method, path, post_data, headers, port):
connection_factory = ServerConnectionFactory(method, path, post_data, headers, self)
connection_factory.protocol = SSLServerConnection
self.reactor.connectSSL(host, port, connection_factory, ssl.ClientContextFactory())