Show
Ignore:
Timestamp:
04/14/04 17:14:10 (9 years ago)
Author:
alexcv
Message:

Switched to threads

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog/src/firewall.h

    r45 r64  
    2929 
    3030typedef struct _t_node { 
    31         void    *next; 
     31        struct  _t_node *next; 
    3232        char    *ip, 
    3333                *mac, 
    3434                *token; 
    35         int     active; /* boolean */ 
     35        int     active, /* boolean */ 
     36                fd;     /* socket */ 
    3637        long    int     counter; 
    3738        UserRights      *rights; 
     
    5455void free_node(t_node *node); 
    5556 
     57int check_userrights(t_node *node); 
     58 
    5659#endif /* _FIREWALL_H_ */