diff options
author | Martin Willi <martin@strongswan.org> | 2006-04-24 10:40:10 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-04-24 10:40:10 +0000 |
commit | a8c09d8cc0044fbff6c89c2e8966427ee7ed1ef0 (patch) | |
tree | 91b37f9344855204233631622d5b13a7056084b1 /Source/charon/network | |
parent | fcfeb3220fbd4e25b0ac63c541c18e8ae1f30766 (diff) | |
download | strongswan-a8c09d8cc0044fbff6c89c2e8966427ee7ed1ef0.tar.bz2 strongswan-a8c09d8cc0044fbff6c89c2e8966427ee7ed1ef0.tar.xz |
- identification_t supports now almost all id types
- x509 certificates work with identification_t now
- fixes here, fixes there
Diffstat (limited to 'Source/charon/network')
-rw-r--r-- | Source/charon/network/socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/charon/network/socket.c b/Source/charon/network/socket.c index 79c7c421d..32ff84538 100644 --- a/Source/charon/network/socket.c +++ b/Source/charon/network/socket.c @@ -133,7 +133,7 @@ struct private_socket_t{ /** * implementation of socket_t.receive */ -status_t receiver(private_socket_t *this, packet_t **packet) +static status_t receiver(private_socket_t *this, packet_t **packet) { char buffer[MAX_PACKET]; chunk_t data; |