Remove logs
This commit is contained in:
parent
2f73ea96e1
commit
f4fa63fcef
1 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
// A Tor cell size is 512 bytes but handle only 498 bytes of data
|
// A Tor cell size is 512 bytes but handle only 498 bytes of data
|
||||||
#define TOR_CELL_SIZE 498
|
#define TOR_CELL_SIZE 498
|
||||||
#define ALLOWED_JITTER_MS 200
|
#define ALLOWED_JITTER_MS 100
|
||||||
#define MAX_LINKS 64
|
#define MAX_LINKS 64
|
||||||
|
|
||||||
struct thunder_ctx {
|
struct thunder_ctx {
|
||||||
|
@ -118,7 +118,7 @@ int schedule(struct evt_core_ctx* ctx, struct evt_core_fdinfo* fdinfo, struct bu
|
||||||
sprintf(url, "tcp:write:127.0.0.1:%d", 7500 + thunderc->selected_link);
|
sprintf(url, "tcp:write:127.0.0.1:%d", 7500 + thunderc->selected_link);
|
||||||
to_fdinfo = evt_core_get_from_url (ctx, url);
|
to_fdinfo = evt_core_get_from_url (ctx, url);
|
||||||
} while (to_fdinfo == NULL);
|
} while (to_fdinfo == NULL);
|
||||||
printf("URL %s has been retained\n", url);
|
//printf("URL %s has been retained\n", url);
|
||||||
|
|
||||||
// 2. We create the packet template
|
// 2. We create the packet template
|
||||||
union abstract_packet links = {
|
union abstract_packet links = {
|
||||||
|
|
Loading…
Reference in a new issue