Cleaned up. Removed unnecessary extern keywords from function declarations so to fit them better to one line.
This commit is contained in:
@ -81,12 +81,12 @@ typedef struct session {
|
|||||||
|
|
||||||
#define SESSION_PROTOCOL(x, type) DCB_PROTOCOL((x)->client, type)
|
#define SESSION_PROTOCOL(x, type) DCB_PROTOCOL((x)->client, type)
|
||||||
|
|
||||||
extern SESSION *session_alloc(struct service *, struct dcb *);
|
SESSION *session_alloc(struct service *, struct dcb *);
|
||||||
extern void session_free(SESSION *);
|
bool session_free(SESSION *);
|
||||||
extern void printAllSessions();
|
void printAllSessions();
|
||||||
extern void printSession(SESSION *);
|
void printSession(SESSION *);
|
||||||
extern void dprintAllSessions(struct dcb *);
|
void dprintAllSessions(struct dcb *);
|
||||||
extern void dprintSession(struct dcb *, SESSION *);
|
void dprintSession(struct dcb *, SESSION *);
|
||||||
extern char *session_state(int);
|
char *session_state(int);
|
||||||
extern bool session_link_dcb(SESSION *, struct dcb *);
|
bool session_link_dcb(SESSION *, struct dcb *);
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user