aboutsummaryrefslogtreecommitdiff
path: root/peer.h
blob: 045578a6f7483915cef41ef9b36af7f3b3b07910 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 * Localchat
 * Ben Burwell
 *
 * Peer structure
 */

struct peer {
	char username[32];
	char ip[16];
	char in_chat[2];
	time_t last_seen;
};