1 #ifndef netstuff_h
2 #define netstuff_h
3 
4 
5 #define lcd_host "localhost"
6 #define lcd_port 13666
7 #define MAXMSG 8192 /* as defined in lcdproc's implementation */
8 
9 int lcd_net_init(const char *host, u_short port, const char **neterror);
10 int lcd_net_start();
11 int lcd_net_stop();
12 
13 #endif /* netstuff_h */
14