8 lines
126 B
C
8 lines
126 B
C
typedef struct Auth Auth;
|
|
struct Auth {
|
|
char *name;
|
|
|
|
char *(*session)(Fcall*, Fcall*);
|
|
char *(*attach)(Fcall*, Fcall*);
|
|
};
|