aboutsummaryrefslogblamecommitdiff
path: root/src/struct.h
blob: 18e36a5895967cae465d753effb336466ae31f13 (plain) (tree)






















                                                   
#ifndef _HAVE_ESPIK_STRUCT_H
#define _HAVE_ESPIK_STRUCT_H

typedef struct
{
    char                   *host;
    unsigned short          port;
} t_servinfo;

typedef struct
{
    char                   *nickname;
    char                   *username;
    char                   *realname;   /* gecos */
} t_userinfo;

typedef struct
{
    t_servinfo             *server;
    t_userinfo             *client;
} t_info;

#endif /* _HAVE_ESPIK_STRUCT_H */