aboutsummaryrefslogblamecommitdiff
path: root/src/espik_config.h
blob: f9bb2130250f906eb3cc0374665af95a45b1958b (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                           
 
                  
                         
 
                                                                         
                                                   

                                                    

                                                   
                                    
 










                                       
                             



                             
                                                        
 
                                     
                 







                                        

  
                                 
#ifndef HAVE_ESPIK_CONFIG_H
#define HAVE_ESPIK_CONFIG_H

#include "espik.h"
#include "espik_global.h"

t_servinfo		*espik_server_config_set (char*, unsigned short);
t_userinfo		*espik_user_sysinfo_get ();
void			espik_config_default_set ();
void			espik_config_init ();
void			espik_config_get (t_info*);
void			espik_config_set (t_info);
void espik_config_shutdown (t_info);

#define ESPIK_CONFIG_VERSION	1

struct _espik_config
{
	int		config_version;
	
	struct
	{
		char*	name;
		
		char*	host;
		int	port;

		char*	nick;
		char*	pass;

		unsigned int	connect_at_startup : 1 ;

		struct server*	next;
	} server;

	struct
	{
		char*	name;
	} channel;

	struct server* current_server;
	struct channel* cuurent_channel;
};

#endif	/* HAVE_ESPIK_CONFIG_H */