mirror of
https://github.com/clearml/dropbear
synced 2025-01-31 02:46:58 +00:00
453261a042
- still a checkpoint-ish commit - sorted out listening on localhost only --HG-- extra : convert_revision : c030ac0a3950dba81f2324e2ba9d4b77fc8f8149
40 lines
933 B
C
40 lines
933 B
C
#ifndef _LISTENER_H
|
|
#define _LISTENER_H
|
|
|
|
#define MAX_LISTENERS 20
|
|
#define LISTENER_EXTEND_SIZE 1
|
|
|
|
struct Listener {
|
|
|
|
int socks[DROPBEAR_MAX_SOCKS];
|
|
unsigned int nsocks;
|
|
|
|
int index; /* index in the array of listeners */
|
|
|
|
void (*acceptor)(struct Listener*, int sock);
|
|
void (*cleanup)(struct Listener*);
|
|
|
|
int type; /* CHANNEL_ID_X11, CHANNEL_ID_AGENT,
|
|
CHANNEL_ID_TCPDIRECT (for clients),
|
|
CHANNEL_ID_TCPFORWARDED (for servers) */
|
|
|
|
void *typedata;
|
|
|
|
};
|
|
|
|
void listeners_initialise();
|
|
void handle_listeners(fd_set * readfds);
|
|
void set_listener_fds(fd_set * readfds);
|
|
|
|
struct Listener* new_listener(int socks[], unsigned int nsocks,
|
|
int type, void* typedata,
|
|
void (*acceptor)(struct Listener* listener, int sock),
|
|
void (*cleanup)(struct Listener*));
|
|
|
|
struct Listener * get_listener(int type, void* typedata,
|
|
int (*match)(void*, void*));
|
|
|
|
void remove_listener(struct Listener* listener);
|
|
|
|
#endif /* _LISTENER_H */
|