Displaying 2 results from an estimated 2 matches for "decryptin".
Did you mean:
decryption
2013 Nov 07
2
Segfaults on connection loss
...e_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 = 0x0, inkeylength...
2008 Sep 30
1
Problem compiling tinc-1.0.8 on gcc-2.95
...define OPTION_PMTU_DISCOVERY 0x0004
-typedef union connection_status_t {
- struct {
+struct status_bits_s {
int pinged:1; /* sent ping */
int active:1; /* 1 if active.. */
int connecting:1; /* 1 if we are waiting for a non-blocking connect() to finish */
@@ -44,7 +43,10 @@
int decryptin:1; /* 1 if we have to decrypt incoming traffic */
int mst:1; /* 1 if this connection is part of a minimum spanning tree */
int unused:23;
- };
+};
+
+typedef union connection_status_t {
+ struct status_bits_s st;
uint32_t value;
} connection_status_t;
diff -ubr tinc-1.0.8/src/graph...