Changeset 527
- Timestamp:
- 11/14/09 21:40:51 (2 years ago)
- Location:
- branches/garlicat
- Files:
-
- 3 edited
-
configure (modified) (10 diffs)
-
src/ocat.c (modified) (1 diff)
-
src/ocatsocks.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/garlicat/configure
r526 r527 1 1 #! /bin/sh 2 2 # Guess values for system-dependent variables and create Makefiles. 3 # Generated by GNU Autoconf 2.62 for onioncat 0.2.0.r52 6.3 # Generated by GNU Autoconf 2.62 for onioncat 0.2.0.r527. 4 4 # 5 5 # Report bugs to <rahra@cypherpunk.at>. … … 597 597 PACKAGE_NAME='onioncat' 598 598 PACKAGE_TARNAME='onioncat' 599 PACKAGE_VERSION='0.2.0.r52 6'600 PACKAGE_STRING='onioncat 0.2.0.r52 6'599 PACKAGE_VERSION='0.2.0.r527' 600 PACKAGE_STRING='onioncat 0.2.0.r527' 601 601 PACKAGE_BUGREPORT='rahra@cypherpunk.at' 602 602 … … 1260 1260 # This message is too long to be a string in the A/UX 3.1 sh. 1261 1261 cat <<_ACEOF 1262 \`configure' configures onioncat 0.2.0.r52 6to adapt to many kinds of systems.1262 \`configure' configures onioncat 0.2.0.r527 to adapt to many kinds of systems. 1263 1263 1264 1264 Usage: $0 [OPTION]... [VAR=VALUE]... … … 1330 1330 if test -n "$ac_init_help"; then 1331 1331 case $ac_init_help in 1332 short | recursive ) echo "Configuration of onioncat 0.2.0.r52 6:";;1332 short | recursive ) echo "Configuration of onioncat 0.2.0.r527:";; 1333 1333 esac 1334 1334 cat <<\_ACEOF … … 1422 1422 if $ac_init_version; then 1423 1423 cat <<\_ACEOF 1424 onioncat configure 0.2.0.r52 61424 onioncat configure 0.2.0.r527 1425 1425 generated by GNU Autoconf 2.62 1426 1426 … … 1436 1436 running configure, to aid debugging if configure makes a mistake. 1437 1437 1438 It was created by onioncat $as_me 0.2.0.r52 6, which was1438 It was created by onioncat $as_me 0.2.0.r527, which was 1439 1439 generated by GNU Autoconf 2.62. Invocation command line was 1440 1440 … … 2085 2085 # Define the identity of the package. 2086 2086 PACKAGE='onioncat' 2087 VERSION='0.2.0.r52 6'2087 VERSION='0.2.0.r527' 2088 2088 2089 2089 … … 2236 2236 2237 2237 cat >>confdefs.h <<\_ACEOF 2238 #define SVN_REVISION "52 6"2238 #define SVN_REVISION "527" 2239 2239 _ACEOF 2240 2240 … … 5209 5209 # values after options handling. 5210 5210 ac_log=" 5211 This file was extended by onioncat $as_me 0.2.0.r52 6, which was5211 This file was extended by onioncat $as_me 0.2.0.r527, which was 5212 5212 generated by GNU Autoconf 2.62. Invocation command line was 5213 5213 … … 5262 5262 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 5263 5263 ac_cs_version="\\ 5264 onioncat config.status 0.2.0.r52 65264 onioncat config.status 0.2.0.r527 5265 5265 configured by $0, generated by GNU Autoconf 2.62, 5266 5266 with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" -
branches/garlicat/src/ocat.c
r526 r527 379 379 log_msg(LOG_ERR, "address does not have TOR prefix"), exit(1); 380 380 ipv6tonion(&CNF(ocat_addr), CNF(onion_url)); 381 printf("%s .onion\n", CNF(onion_url));381 printf("%s%s\n", CNF(onion_url), NDESC(domain)); 382 382 exit(0); 383 383 } -
branches/garlicat/src/ocatsocks.c
r525 r527 42 42 43 43 ipv6tonion(&sq->addr, onion); 44 strlcat(onion, ".onion", sizeof(onion));44 strlcat(onion, NDESC(domain), sizeof(onion)); 45 45 log_msg(LOG_INFO, "trying to connect to \"%s\" [%s]", onion, inet_ntop(AF_INET6, &sq->addr, buf, SOCKS_BUFLEN)); 46 46 … … 258 258 } 259 259 260 snprintf(buf, SIZE_1K, "%d: %39s, %s .onion, state = %d, %s(%d), retry = %d, connect_time = %d, restart_time = %d",260 snprintf(buf, SIZE_1K, "%d: %39s, %s%s, state = %d, %s(%d), retry = %d, connect_time = %d, restart_time = %d", 261 261 i, 262 262 addrstr, 263 263 ipv6tonion(&squeue->addr, onstr), 264 NDESC(domain), 264 265 squeue->state, 265 266 squeue->perm ? "PERMANENT" : "TEMPORARY",
Note: See TracChangeset
for help on using the changeset viewer.
