X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=apps%2Fsilcd%2Fserver_internal.h;h=bc215e07da8db9358021808434226b094048ab06;hb=9621b64787287e7cc67061754d80566782cc76ea;hp=93d046ad6ea5adb7f29e9884aefb9b4d3876b518;hpb=72cfa31520ebc0058763a30e21c13f6e9a964aa0;p=silc.git diff --git a/apps/silcd/server_internal.h b/apps/silcd/server_internal.h index 93d046ad..bc215e07 100644 --- a/apps/silcd/server_internal.h +++ b/apps/silcd/server_internal.h @@ -25,35 +25,35 @@ various things. */ typedef struct { /* Local stats (server and router) */ - uint32 my_clients; /* Locally connected clients */ - uint32 my_servers; /* Locally connected servers */ - uint32 my_routers; /* Locally connected routers */ - uint32 my_channels; /* Locally created channels */ + uint32 my_clients; /* Locally connected clients */ + uint32 my_servers; /* Locally connected servers */ + uint32 my_routers; /* Locally connected routers */ + uint32 my_channels; /* Locally created channels */ uint32 my_chanclients; /* Local clients on local channels */ - uint32 my_aways; /* Local clients away (XXX) */ - uint32 my_server_ops; /* Local server operators */ - uint32 my_router_ops; /* Local router operators */ + uint32 my_aways; /* Local clients away (XXX) */ + uint32 my_server_ops; /* Local server operators */ + uint32 my_router_ops; /* Local router operators */ /* Global stats (mainly for router) */ - uint32 cell_clients; /* All clients in cell */ - uint32 cell_servers; /* All servers in cell */ - uint32 cell_channels; /* All channels in cell */ - uint32 cell_chanclients; /* All clients on cell's channels */ - uint32 clients; /* All clients */ - uint32 servers; /* All servers */ - uint32 routers; /* All routers */ - uint32 channels; /* All channels */ - uint32 chanclients; /* All clients on channels */ - uint32 server_ops; /* All server operators */ - uint32 router_ops; /* All router operators */ + uint32 cell_clients; /* All clients in cell */ + uint32 cell_servers; /* All servers in cell */ + uint32 cell_channels; /* All channels in cell */ + uint32 cell_chanclients; /* All clients on cell's channels */ + uint32 clients; /* All clients */ + uint32 servers; /* All servers */ + uint32 routers; /* All routers */ + uint32 channels; /* All channels */ + uint32 chanclients; /* All clients on channels */ + uint32 server_ops; /* All server operators */ + uint32 router_ops; /* All router operators */ /* General */ - uint32 conn_attempts; /* Connection attempts */ - uint32 conn_failures; /* Connection failure */ - uint32 auth_attempts; /* Authentication attempts */ - uint32 auth_failures; /* Authentication failures */ - uint32 packets_sent; /* Sent packets */ - uint32 packets_received; /* Received packets */ + uint32 conn_attempts; /* Connection attempts */ + uint32 conn_failures; /* Connection failure */ + uint32 auth_attempts; /* Authentication attempts */ + uint32 auth_failures; /* Authentication failures */ + uint32 packets_sent; /* Sent packets */ + uint32 packets_received; /* Received packets */ } SilcServerStatistics; typedef struct { @@ -187,5 +187,6 @@ do { \ } while(0) /* Prototypes */ +SILC_TASK_CALLBACK_GLOBAL(silc_server_rekey_final); #endif