IPv6 Support for mcbot
We initialize the socket functions with AF_UNSPEC and let the library
fill in the proper values. Connects to IPv4 or IPv6.
committer: Markus Bröker <mbroeker@largo.homelinux.org>
/**
* $Id: config.h 51 2008-01-10 00:19:39Z mbroeker $
* $URL: http://localhost/svn/c/mcbot/trunk/include/config.h $
*
*/
#ifndef CONFIG_H
#define CONFIG_H
struct UserConfig {
char *nick;
char *pass;
char *server;
char *port;
char *topic;
char *channel;
};
typedef struct UserConfig UC;
int config (UC *, char *);
#endif