aboutsummaryrefslogtreecommitdiff
path: root/include/libssh/callbacks.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libssh/callbacks.h')
-rw-r--r--include/libssh/callbacks.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libssh/callbacks.h b/include/libssh/callbacks.h
index c7a9e3cf..af821409 100644
--- a/include/libssh/callbacks.h
+++ b/include/libssh/callbacks.h
@@ -169,9 +169,9 @@ typedef int (*ssh_packet_callback) (ssh_session session, uint8_t type, ssh_buffe
struct ssh_packet_callbacks_struct {
/** Index of the first packet type being handled */
- u_int8_t start;
+ uint8_t start;
/** Number of packets being handled by this callback struct */
- u_int8_t n_callbacks;
+ uint8_t n_callbacks;
/** A pointer to n_callbacks packet callbacks */
ssh_packet_callback *callbacks;
void *user;