diff options
author | Roger Dingledine <arma@torproject.org> | 2004-04-02 23:38:26 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-04-02 23:38:26 +0000 |
commit | a8d805e292142b2ba094c5066c59291953ae93ab (patch) | |
tree | 60b7b8f9da0efbeef44584ef7e1eb94414eb6d11 /src/or/routerlist.c | |
parent | e8345bfced697f96fbb885298e464760988d71e4 (diff) | |
download | tor-a8d805e292142b2ba094c5066c59291953ae93ab.tar tor-a8d805e292142b2ba094c5066c59291953ae93ab.tar.gz |
break out circ->rend_service
(this breaks the compile; must fix things)
let alice react when she learns a new rendezvous descriptor
let alice launch intro and rend circuits and mark them with her query
svn:r1446
Diffstat (limited to 'src/or/routerlist.c')
-rw-r--r-- | src/or/routerlist.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 048dc4947..711cf8d59 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -196,6 +196,9 @@ void add_nickname_list_to_smartlist(smartlist_t *sl, char *list) { char nick[MAX_NICKNAME_LEN]; routerinfo_t *router; + assert(sl); + assert(list); + while(isspace((int)*list) || *list==',') list++; start = list; |