diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2008-10-26 22:42:39 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2008-10-26 22:42:39 +0100 |
commit | d51aa2819005a03e4cfb6f62333be6ccadfb3c06 (patch) | |
tree | 2a76b826cfdac4cf1a94a305f9fe416a2df45840 /lib/socket.h | |
parent | 11cb620266035ffbe17b21c4a174380cb8b6a521 (diff) | |
download | bird-d51aa2819005a03e4cfb6f62333be6ccadfb3c06.tar bird-d51aa2819005a03e4cfb6f62333be6ccadfb3c06.zip |
Implementation of MD5 authentication of BGP sessions.
Diffstat (limited to 'lib/socket.h')
-rw-r--r-- | lib/socket.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/socket.h b/lib/socket.h index ab932b3..4aa521d 100644 --- a/lib/socket.h +++ b/lib/socket.h @@ -39,6 +39,7 @@ typedef struct birdsock { int fd; /* System-dependent data */ node n; void *rbuf_alloc, *tbuf_alloc; + char *password; /* Password for MD5 authentication */ } sock; sock *sk_new(pool *); /* Allocate new socket */ @@ -47,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_md5_auth(sock *s, ip_addr a, char *passwd); /* Add or remove security associations for given passive socket */ static inline int sk_send_buffer_empty(sock *sk) |