diff options
-rw-r--r-- | src/fastd.h | 20 | ||||
-rw-r--r-- | src/peer.h | 20 |
2 files changed, 20 insertions, 20 deletions
diff --git a/src/fastd.h b/src/fastd.h index 1cf9c12..108df36 100644 --- a/src/fastd.h +++ b/src/fastd.h @@ -97,26 +97,6 @@ struct fastd_socket { fastd_peer_t *peer; }; -struct fastd_peer_group_config { - fastd_peer_group_config_t *next; - fastd_peer_group_config_t *parent; - fastd_peer_group_config_t *children; - - char *name; - fastd_string_stack_t *peer_dirs; - - /* constraints */ - int max_connections; -}; - -struct fastd_peer_group { - fastd_peer_group_t *next; - fastd_peer_group_t *parent; - fastd_peer_group_t *children; - - const fastd_peer_group_config_t *conf; -}; - struct fastd_stats { uint64_t packets; uint64_t bytes; @@ -89,6 +89,26 @@ struct fastd_peer_config { fastd_protocol_peer_config_t *protocol_config; }; +struct fastd_peer_group { + fastd_peer_group_t *next; + fastd_peer_group_t *parent; + fastd_peer_group_t *children; + + const fastd_peer_group_config_t *conf; +}; + +struct fastd_peer_group_config { + fastd_peer_group_config_t *next; + fastd_peer_group_config_t *parent; + fastd_peer_group_config_t *children; + + char *name; + fastd_string_stack_t *peer_dirs; + + /* constraints */ + int max_connections; +}; + struct fastd_peer_eth_addr { fastd_eth_addr_t addr; fastd_peer_t *peer; |