summaryrefslogtreecommitdiffhomepage
path: root/listener.h
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2004-08-11 17:26:47 +0000
committerMatt Johnston <matt@ucc.asn.au>2004-08-11 17:26:47 +0000
commit453261a0420a1e4ee5d0feb3df6806c39ae3e0ff (patch)
treedffe7a4d63c88753c9763cbbe584d3d95d1a95f2 /listener.h
parenta712baa8e566bfd8403a3e2bfdf350a0dc50ea9f (diff)
- A nice cleaner structure for tcp (acceptor) forwarding.
- still a checkpoint-ish commit - sorted out listening on localhost only --HG-- extra : convert_revision : c030ac0a3950dba81f2324e2ba9d4b77fc8f8149
Diffstat (limited to 'listener.h')
-rw-r--r--listener.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/listener.h b/listener.h
index c634ead..11f9dc4 100644
--- a/listener.h
+++ b/listener.h
@@ -11,7 +11,7 @@ struct Listener {
int index; /* index in the array of listeners */
- void (*accepter)(struct Listener*, int sock);
+ void (*acceptor)(struct Listener*, int sock);
void (*cleanup)(struct Listener*);
int type; /* CHANNEL_ID_X11, CHANNEL_ID_AGENT,
@@ -28,7 +28,7 @@ void set_listener_fds(fd_set * readfds);
struct Listener* new_listener(int socks[], unsigned int nsocks,
int type, void* typedata,
- void (*accepter)(struct Listener*, int sock),
+ void (*acceptor)(struct Listener* listener, int sock),
void (*cleanup)(struct Listener*));
struct Listener * get_listener(int type, void* typedata,