diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-08-18 21:34:53 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-08-18 21:34:53 +0200 |
commit | 2352e1a79e6f77cb894f5b65b1632e27cd0695a9 (patch) | |
tree | 921dba0986760d57986d84f930911cbff1ced4bb /src/fastd.h | |
parent | c251df4a17e45460fa20822df596e507ef1b1629 (diff) | |
download | fastd-2352e1a79e6f77cb894f5b65b1632e27cd0695a9.tar fastd-2352e1a79e6f77cb894f5b65b1632e27cd0695a9.zip |
Rename "temporary peers" to "dynamic peers"
Diffstat (limited to 'src/fastd.h')
-rw-r--r-- | src/fastd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fastd.h b/src/fastd.h index 554a982..fcd8676 100644 --- a/src/fastd.h +++ b/src/fastd.h @@ -79,8 +79,8 @@ struct fastd_protocol { /** Checks if a peer configuration is valid and a connection may be established */ bool (*peer_check)(fastd_peer_config_t *peer_conf); - /** Checks if a temporary peer is valid and a connection may be established */ - bool (*peer_check_temporary)(fastd_peer_t *peer); + /** Checks if a dynamic peer is valid and a connection may be established */ + bool (*peer_check_dynamic)(fastd_peer_t *peer); /** Sends a handshake to the given peer */ |