Mercurial > dropbear
comparison channel.h @ 1037:7c899f24a85b
Some minor typo fixes, found by codespell.
author | Thorsten Horstmann <thorsten.horstmann@web.de> |
---|---|
date | Tue, 24 Feb 2015 20:45:07 +0800 |
parents | deed0571cacc |
children | 01eea88963f3 |
comparison
equal
deleted
inserted
replaced
1036:deed0571cacc | 1037:7c899f24a85b |
---|---|
90 enum dropbear_channel_prio prio; | 90 enum dropbear_channel_prio prio; |
91 }; | 91 }; |
92 | 92 |
93 struct ChanType { | 93 struct ChanType { |
94 | 94 |
95 int sepfds; /* Whether this channel has seperate pipes for in/out or not */ | 95 int sepfds; /* Whether this channel has separate pipes for in/out or not */ |
96 char *name; | 96 char *name; |
97 int (*inithandler)(struct Channel*); | 97 int (*inithandler)(struct Channel*); |
98 int (*check_close)(struct Channel*); | 98 int (*check_close)(struct Channel*); |
99 void (*reqhandler)(struct Channel*); | 99 void (*reqhandler)(struct Channel*); |
100 void (*closehandler)(struct Channel*); | 100 void (*closehandler)(struct Channel*); |