diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2008-11-01 16:58:40 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2008-11-01 16:58:40 +0100 |
commit | a39b165e45fbfea053fd0237e0d5a3ebdcf40f78 (patch) | |
tree | 6d86da172a76d90f85b3b78d214ca69b93e0851f /lib | |
parent | a92fe607173b52cf28256f00399953c623788c35 (diff) | |
download | bird-a39b165e45fbfea053fd0237e0d5a3ebdcf40f78.tar bird-a39b165e45fbfea053fd0237e0d5a3ebdcf40f78.zip |
Multihop BGP was completely broken, because listening socket has always
ttl 1.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/socket.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/socket.h b/lib/socket.h index 4aa521d..5fe9193 100644 --- a/lib/socket.h +++ b/lib/socket.h @@ -48,6 +48,7 @@ int sk_send(sock *, unsigned len); /* Send data, <0=err, >0=ok, 0=sleep */ int sk_send_to(sock *, unsigned len, ip_addr to, unsigned port); /* sk_send to given destination */ void sk_reallocate(sock *); /* Free and allocate tbuf & rbuf */ void sk_dump_all(void); +int sk_set_ttl(sock *s, int ttl); /* Set TTL for given socket */ int sk_set_md5_auth(sock *s, ip_addr a, char *passwd); /* Add or remove security associations for given passive socket */ static inline int |