Changeset 551
- Timestamp:
- 01/07/11 09:20:01 (17 months ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
configure (modified) (10 diffs)
-
man/ocat.1 (modified) (2 diffs)
-
src/ocatsocks.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r550 r551 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.2.r55 0.3 # Generated by GNU Autoconf 2.62 for onioncat 0.2.2.r551. 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.2.r55 0'600 PACKAGE_STRING='onioncat 0.2.2.r55 0'599 PACKAGE_VERSION='0.2.2.r551' 600 PACKAGE_STRING='onioncat 0.2.2.r551' 601 601 PACKAGE_BUGREPORT='rahra@cypherpunk.at' 602 602 … … 1263 1263 # This message is too long to be a string in the A/UX 3.1 sh. 1264 1264 cat <<_ACEOF 1265 \`configure' configures onioncat 0.2.2.r55 0to adapt to many kinds of systems.1265 \`configure' configures onioncat 0.2.2.r551 to adapt to many kinds of systems. 1266 1266 1267 1267 Usage: $0 [OPTION]... [VAR=VALUE]... … … 1333 1333 if test -n "$ac_init_help"; then 1334 1334 case $ac_init_help in 1335 short | recursive ) echo "Configuration of onioncat 0.2.2.r55 0:";;1335 short | recursive ) echo "Configuration of onioncat 0.2.2.r551:";; 1336 1336 esac 1337 1337 cat <<\_ACEOF … … 1426 1426 if $ac_init_version; then 1427 1427 cat <<\_ACEOF 1428 onioncat configure 0.2.2.r55 01428 onioncat configure 0.2.2.r551 1429 1429 generated by GNU Autoconf 2.62 1430 1430 … … 1440 1440 running configure, to aid debugging if configure makes a mistake. 1441 1441 1442 It was created by onioncat $as_me 0.2.2.r55 0, which was1442 It was created by onioncat $as_me 0.2.2.r551, which was 1443 1443 generated by GNU Autoconf 2.62. Invocation command line was 1444 1444 … … 2089 2089 # Define the identity of the package. 2090 2090 PACKAGE='onioncat' 2091 VERSION='0.2.2.r55 0'2091 VERSION='0.2.2.r551' 2092 2092 2093 2093 … … 2240 2240 2241 2241 cat >>confdefs.h <<\_ACEOF 2242 #define SVN_REVISION "55 0"2242 #define SVN_REVISION "551" 2243 2243 _ACEOF 2244 2244 … … 5948 5948 # values after options handling. 5949 5949 ac_log=" 5950 This file was extended by onioncat $as_me 0.2.2.r55 0, which was5950 This file was extended by onioncat $as_me 0.2.2.r551, which was 5951 5951 generated by GNU Autoconf 2.62. Invocation command line was 5952 5952 … … 6001 6001 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 6002 6002 ac_cs_version="\\ 6003 onioncat config.status 0.2.2.r55 06003 onioncat config.status 0.2.2.r551 6004 6004 configured by $0, generated by GNU Autoconf 2.62, 6005 6005 with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" -
trunk/man/ocat.1
r534 r551 170 170 171 171 .SH AUTHOR 172 Concepts, software, and man page written by Bernhard R. Fischer .173 Package maintenance and additional support by Ferdinand Haselbacher, 174 Daniel Haslinger, and Wim Gaethofs.172 Concepts, software, and man page written by Bernhard R. Fischer 173 <bf@abenteuerland.at>. Package maintenance and additional support by Ferdinand 174 Haselbacher, Daniel Haslinger <creo-ocat@blackmesa.at>, and Wim Gaethofs. 175 175 176 176 .SH "SEE ALSO" … … 197 197 You should have received a copy of the GNU General Public License 198 198 along with OnionCat. If not, see <http://www.gnu.org/licenses/>. 199 -
trunk/src/ocatsocks.c
r547 r551 33 33 static SocksQueue_t *socks_queue_ = NULL; 34 34 35 #define SOCKS_BUFLEN (sizeof(SocksHdr_t) + NDESC(name_size) + strlen(CNF(usrname)) + 2) 35 #define SOCKS_MIN_BUFLEN (sizeof(SocksHdr_t) + NDESC(name_size) + strlen(CNF(usrname)) + 2) 36 #define SOCKS_BUFLEN (SOCKS_MIN_BUFLEN < INET6_ADDRSTRLEN ? INET6_ADDRSTRLEN : SOCKS_MIN_BUFLEN) 36 37 37 38 … … 59 60 } 60 61 62 log_debug("SOCKS_BUFLEN = %d, NI_MAXHOST = %d", SOCKS_BUFLEN, NI_MAXHOST); 61 63 if (inet_ntop(AF_INET6, &sq->addr, buf, sizeof(buf)) == NULL) 62 64 {
Note: See TracChangeset
for help on using the changeset viewer.
