diff options
author | Nick Mathewson <nickm@torproject.org> | 2006-12-29 02:47:51 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2006-12-29 02:47:51 +0000 |
commit | b59573949efd7427463d96c83ce059f79ab4f413 (patch) | |
tree | cd02b4aa9bcf21435865ff8e35fc8960f5ca3a31 /src/or/routerparse.c | |
parent | 0bbbf98be4eff74218a010a24f5cafe4da7045b6 (diff) | |
download | tor-b59573949efd7427463d96c83ce059f79ab4f413.tar tor-b59573949efd7427463d96c83ce059f79ab4f413.tar.gz |
r11736@Kushana: nickm | 2006-12-28 17:46:23 -0500
Mark a pile of XXXX comments as targetted for 0.1.2: some because they look important, some because they look easy.
svn:r9205
Diffstat (limited to 'src/or/routerparse.c')
-rw-r--r-- | src/or/routerparse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/routerparse.c b/src/or/routerparse.c index c1f3c6106..e2159aa42 100644 --- a/src/or/routerparse.c +++ b/src/or/routerparse.c @@ -1387,7 +1387,7 @@ router_parse_addr_policy(directory_token_t *tok) newe = tor_malloc_zero(sizeof(addr_policy_t)); newe->string = tor_malloc(8+strlen(arg)); - /* XXX eventually, use the code from router.c:727 to generate this */ + /* XXXX012 eventually, use the code from router.c:727 to generate this */ tor_snprintf(newe->string, 8+strlen(arg), "%s %s", (tok->tp == K_REJECT) ? "reject" : "accept", arg); newe->policy_type = (tok->tp == K_REJECT) ? ADDR_POLICY_REJECT @@ -1423,7 +1423,7 @@ policy_read_failed: static addr_policy_t * router_parse_private_addr_policy_private(directory_token_t *tok) { - /* XXXX duplicated from config.c */ + /* XXXX012 duplicated from config.c */ static const char *private_nets[] = { "0.0.0.0/8", "169.254.0.0/16", "127.0.0.0/8", "192.168.0.0/16", "10.0.0.0/8", "172.16.0.0/12",NULL }; |