diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2012-01-08 15:27:04 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2012-01-08 15:27:04 +0100 |
commit | eb1451a3a0c45a4cc62dd0f1f3c3157ec38e2f8e (patch) | |
tree | af9fcd4d57aa384793aa32543b7952bf10945aff /lib | |
parent | a03ede64936d0aee1a760a19dc6194b2fdc9c692 (diff) |
Better support for link-local addresses in IO code.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/socket.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/socket.h b/lib/socket.h index 9b9452c6..b0c3eda2 100644 --- a/lib/socket.h +++ b/lib/socket.h @@ -58,7 +58,7 @@ int sk_set_ttl(sock *s, int ttl); /* Set transmit TTL for given socket */ int sk_set_min_ttl(sock *s, int ttl); /* Set minimal accepted TTL for given socket */ /* Add or remove security associations for given passive socket */ -int sk_set_md5_auth(sock *s, ip_addr a, char *passwd); +int sk_set_md5_auth(sock *s, ip_addr a, struct iface *ifa, char *passwd); int sk_rx_ready(sock *s); /* Prepare UDP or IP socket to multicasting. s->iface and s->ttl must be set */ |