mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-11-30 13:01:23 +03:00
Fixed uint* to work on Windows.
Thanks to Patrick Spendrin.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user