diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-03-14 17:16:28 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-03-14 17:16:28 +0100 |
commit | d9ed50094da3890b10872a4955dceb2817931f1f (patch) | |
tree | 15f83f511489e46bbb1df5ff2443a784b0a43815 /src/peer.h | |
parent | 4cdee0ee4745a5bb44b9f2c95812cb4f1aea0a31 (diff) | |
download | fastd-d9ed50094da3890b10872a4955dceb2817931f1f.tar fastd-d9ed50094da3890b10872a4955dceb2817931f1f.zip |
Require libuecc; rename cfxp to ecfxp; add some basic infrastructure for crypto implementation
Diffstat (limited to 'src/peer.h')
-rw-r--r-- | src/peer.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -48,6 +48,8 @@ struct _fastd_peer { uint8_t last_req_id; struct timespec seen; + + void *method_private; }; struct _fastd_peer_config { @@ -103,8 +105,6 @@ static inline void fastd_peer_set_established(fastd_context *ctx, fastd_peer *pe pr_warn(ctx, "tried to set an already established connection to established"); return; } - - pr_info(ctx, "Connection with %P established.", peer); } static inline bool fastd_eth_addr_is_unicast(const fastd_eth_addr *addr) { |