aboutsummaryrefslogtreecommitdiff
path: root/changes/bug6465
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2012-10-20 15:37:57 -0400
committerRoger Dingledine <arma@torproject.org>2012-10-20 15:37:57 -0400
commit93044642842208e188a80bd086460e2cc60fbed7 (patch)
tree7fe67da545cb50fd6c11cdadcff2fd132d87e917 /changes/bug6465
parent7ebfeff65756edf94dec5f1b0568d5a3cfebc823 (diff)
downloadtor-93044642842208e188a80bd086460e2cc60fbed7.tar
tor-93044642842208e188a80bd086460e2cc60fbed7.tar.gz
fold in changes files for upcoming 0.2.4.4-alpha
Diffstat (limited to 'changes/bug6465')
-rw-r--r--changes/bug646512
1 files changed, 0 insertions, 12 deletions
diff --git a/changes/bug6465 b/changes/bug6465
deleted file mode 100644
index a5ea9e213..000000000
--- a/changes/bug6465
+++ /dev/null
@@ -1,12 +0,0 @@
- o Infrastructure features:
- - Introduce new channel_t abstraction between circuits and or_connection_t
- to allow for implementing alternate OR-to-OR transports. A channel_t is
- an abstract object which can either be a cell-bearing channel, which is
- responsible for authenticating and handshaking with the remote OR and
- transmitting cells to and from it, or a listening channel, which spawns
- new cell-bearing channels at the request of remote ORs.
-
- - Also new is the channel_tls_t subclass of channel_t, adapting it to the
- existing or_connection_t code. The V2/V3 protocol handshaking code
- which formerly resided in command.c has been moved below the channel_t
- abstraction layer and may be found in channeltls.c now.