ctorrent: import from packages

Signed-off-by: Peter Wagner <tripolar@gmx.at>
This commit is contained in:
Peter Wagner
2014-06-16 11:38:45 +02:00
parent a1c86a0a84
commit 2ed81adda6
6 changed files with 660 additions and 0 deletions
@@ -0,0 +1,14 @@
diff --git a/bencode.cpp b/bencode.cpp
index fef82ba..b7f14bc 100644
--- a/bencode.cpp
+++ b/bencode.cpp
@@ -45,6 +45,9 @@ size_t buf_int(const char *b, size_t len, char beginchar, char endchar,
p++;
len--;
}
+ if( *p == '-'){
+ p++; len--;
+ }
for( psave = p; len && isdigit(*p); p++, len-- );