summaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorJérémy Bobbio <lunar@debian.org>2012-07-06 15:31:47 +0200
committerNick Mathewson <nickm@torproject.org>2013-01-16 23:29:59 -0500
commitaa01d0a18337787209241d08a630a2d8c10f29f0 (patch)
tree33695dc93cc13b0067713040265d15364473c7af /changes
parentb998431a33db2be0246f176ea0077b98d5258866 (diff)
downloadtor-aa01d0a18337787209241d08a630a2d8c10f29f0.tar.gz
tor-aa01d0a18337787209241d08a630a2d8c10f29f0.zip
Implement proposal 204: ignore subdomains in hidden service addresses
The implementation is pretty straightforward: parse_extended_hostname() is modified to drop any leading components from an address like 'foo.aaaaaaaaaaaaaaaa.onion'.
Diffstat (limited to 'changes')
-rw-r--r--changes/proposal2045
1 files changed, 5 insertions, 0 deletions
diff --git a/changes/proposal204 b/changes/proposal204
new file mode 100644
index 0000000000..4c1854b1ed
--- /dev/null
+++ b/changes/proposal204
@@ -0,0 +1,5 @@
+ o Minor features:
+ - Ignore sub-domain components of a .onion address. This makes HTTP "virtual"
+ hosting possible: http://foo.aaaaaaaaaaaaaaaa.onion/ and
+ http//bar.aaaaaaaaaaaaaaaa.onion/ can be two different websites hosted at
+ the same location. Implements proposal 204.