Displaying 2 results from an estimated 2 matches for "encryptout".
Did you mean:
encryptor
2013 Nov 07
2
Segfaults on connection loss
...edge_del(c->edge);
(gdb) p *c
$2 = {name = 0x1abb560 "...", address = { ... }, hostname = 0x1b6dc70
"... port 655", protocol_version = 17, socket = 15, options = 0, status
= {pinged = 0, active = 0, connecting = 0, unused_termreq = 0, remove =
1, timeout = 0, encryptout = 0, decryptin = 0, mst = 0, unused = 0},
estimated_weight = 1011, start = {tv_sec = 1383624081, tv_usec =
156843}, outgoing = 0x1abc4c0, node = 0x1ad8ef0, edge = 0x1b71ba0,
rsa_key = 0x0, incipher = 0x7ff0d99eea20, outcipher = 0x7ff0d99eea20,
inctx = 0x0, outctx = 0x0, inkey = 0x0, outkey = 0x...
2008 Sep 30
1
Problem compiling tinc-1.0.8 on gcc-2.95
...subnet_update(n, NULL, n->status.st.reachable);
}
}
}
diff -ubr tinc-1.0.8/src/meta.c tinc-1.0.8.my/src/meta.c
--- tinc-1.0.8/src/meta.c Tue Nov 14 14:28:11 2006
+++ tinc-1.0.8.my/src/meta.c Thu Sep 25 11:19:53 2008
@@ -59,7 +59,7 @@
}
/* Add our data to buffer */
- if(c->status.encryptout) {
+ if(c->status.st.encryptout) {
result = EVP_EncryptUpdate(c->outctx, (unsigned char *)c->outbuf + c->outbufstart + c->outbuflen,
&outlen, (unsigned char *)buffer, length);
if(!result || outlen < length) {
@@ -126,7 +126,7 @@
for(node = connection_tree->head...