Fix displayed idle and online time, add CHANGES files, and some code clean up
[umurmur.git] / src / sharedmemory_struct.h
1 typedef struct\r
2 {\r
3   char username[121];\r
4   char ipaddress[46];\r
5   int tcp_port, udp_port;\r
6   char channel[121];\r
7   bool_t bUDP, authenticated, deaf, mute, self_deaf, self_mute, recording, bOpus;\r
8   uint32_t online_secs, idle_secs;\r
9   float UDPPingAvg, UDPPingVar, TCPPingAvg, TCPPingVar;\r
10   uint32_t UDPPackets, TCPPackets;\r
11 \r
12 }shmclient_t;\r
13 \r
14 typedef struct\r
15 {\r
16 \r
17   int clientcount, server_max_clients;\r
18   unsigned int umurmurd_pid; \r
19   shmclient_t client[];    \r
20   \r
21 }shm_t;