From 71c750ef9c3e53ef416d1de6e85458f16ca48d74 Mon Sep 17 00:00:00 2001 From: Ruben Pollan Date: Tue, 26 May 2015 22:06:20 +0200 Subject: [refactor] move http twisted code from soledad Implements an HTTP client the twisted way, with a focus on pinning the SSL certs. * Related: #6506 --- pkg/requirements.pip | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkg/requirements.pip') diff --git a/pkg/requirements.pip b/pkg/requirements.pip index c89fd19..7346fde 100644 --- a/pkg/requirements.pip +++ b/pkg/requirements.pip @@ -4,5 +4,7 @@ protobuf>=2.4.1 protobuf.socketrpc pyopenssl python-dateutil +Twisted>=12.1 +zope.interface #autopep8 -- ??? -- cgit v1.2.3 From 514c1434a016b09d93e8dfc5578b14825d14005a Mon Sep 17 00:00:00 2001 From: drebs Date: Wed, 4 Feb 2015 15:04:10 -0200 Subject: [feat] refactor events to use ZMQ Before this commit, protobuf and protobuf.socketrpc were used to serialize and transmit messages between events clients. This change implements a simpler ZMQ client/server events mechanism that uses ZMQ sockets for transmitting messages from clients to server and to redistribute such messages to subscribed clients. Closes: #6359 --- pkg/requirements.pip | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkg/requirements.pip') diff --git a/pkg/requirements.pip b/pkg/requirements.pip index 7346fde..f875344 100644 --- a/pkg/requirements.pip +++ b/pkg/requirements.pip @@ -1,10 +1,10 @@ jsonschema #<=0.8 -- are we done with this conflict? dirspec -protobuf>=2.4.1 -protobuf.socketrpc pyopenssl python-dateutil Twisted>=12.1 zope.interface +pyzmq +txzmq #autopep8 -- ??? -- cgit v1.2.3 From c071c69e1b5a0d897674a1f7adc6ff32f19400ff Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Wed, 27 May 2015 12:49:44 -0300 Subject: [bug] Use BrowserLikePolicyForHTTPS for checking While testing the way that its implemented now, I found out that no check is being made on certificate attributes against the host. I found this simple way of creating a BrowserLikePolicyForHTTPS using a self signed cert and it worked on my test. I used test_https from Soledad for checking this (which we are fixing on another branch). Also, we don't want to depend on twisted for other things than leap.common.http. --- pkg/requirements.pip | 2 -- 1 file changed, 2 deletions(-) (limited to 'pkg/requirements.pip') diff --git a/pkg/requirements.pip b/pkg/requirements.pip index f875344..1977cc8 100644 --- a/pkg/requirements.pip +++ b/pkg/requirements.pip @@ -2,8 +2,6 @@ jsonschema #<=0.8 -- are we done with this conflict? dirspec pyopenssl python-dateutil -Twisted>=12.1 -zope.interface pyzmq txzmq -- cgit v1.2.3 From e1598b233e6d3e3385edc64d5d4204967c4434fb Mon Sep 17 00:00:00 2001 From: drebs Date: Tue, 2 Jun 2015 15:05:19 -0300 Subject: [pkg] add pyzmq and txzmq dep versions --- pkg/requirements.pip | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkg/requirements.pip') diff --git a/pkg/requirements.pip b/pkg/requirements.pip index 1977cc8..02fb189 100644 --- a/pkg/requirements.pip +++ b/pkg/requirements.pip @@ -2,7 +2,7 @@ jsonschema #<=0.8 -- are we done with this conflict? dirspec pyopenssl python-dateutil -pyzmq -txzmq +pyzmq>=14.4.1 +txzmq>=0.7.3 #autopep8 -- ??? -- cgit v1.2.3