Skip to content

Commit 3c6b71b

Browse files
author
Pan
committed
Updated includes.
1 parent aae3d2d commit 3c6b71b

28 files changed

+28
-28
lines changed

ssh/c_agent.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
cimport c_ssh
1818

19-
cdef extern from "libssh/include/agent.h" nogil:
19+
cdef extern from "libssh/agent.h" nogil:
2020
# Messages for the authentication agent connection.
2121
enum:
2222
SSH_AGENTC_REQUEST_RSA_IDENTITIES

ssh/c_auth.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
from c_ssh cimport uint32_t
2020

21-
cdef extern from "libssh/include/auth.h" nogil:
21+
cdef extern from "libssh/auth.h" nogil:
2222
struct ssh_kbdint_struct:
2323
uint32_t nprompts
2424
uint32_t nanswers

ssh/c_bind.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ cimport c_priv
1818
cimport c_session
1919

2020

21-
cdef extern from "libssh/include/bind.h" nogil:
21+
cdef extern from "libssh/bind.h" nogil:
2222
struct ssh_bind_struct:
2323
ssh_common_struct common
2424
ssh_bind_callbacks_struct *bind_callbacks

ssh/c_callbacks.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from c_ssh cimport ssh_session, ssh_channel, ssh_buffer, ssh_string, \
1818
uint32_t, uint8_t, ssh_key_struct, ssh_auth_callback, ssh_message
1919

20-
cdef extern from "libssh/include/callbacks.h" nogil:
20+
cdef extern from "libssh/callbacks.h" nogil:
2121
ctypedef void (*ssh_callback_int) (int code, void *user)
2222
ctypedef int (*ssh_callback_data) (const void *data, size_t len, void *user)
2323
ctypedef void (*ssh_callback_int_int) (

ssh/c_channels.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ cimport c_ssh
1818
from c_ssh cimport uint32_t, ssh_channel, ssh_session, ssh_buffer, ssh_counter
1919
from c_misc cimport ssh_list
2020

21-
cdef extern from "libssh/include/channels.h" nogil:
21+
cdef extern from "libssh/channels.h" nogil:
2222
enum ssh_channel_request_state_e:
2323
SSH_CHANNEL_REQ_STATE_NONE,
2424
SSH_CHANNEL_REQ_STATE_PENDING,

ssh/c_crypto.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from c_ssh cimport ssh_string
1818
from c_wrapper cimport ssh_mac_e, ssh_hmac_e, ssh_des_e, ssh_hmac_struct
1919

20-
cdef extern from "libssh/include/crypto.h" nogil:
20+
cdef extern from "libssh/crypto.h" nogil:
2121
enum:
2222
DIGEST_MAX_LEN
2323
enum ssh_key_exchange_e:

ssh/c_ed25519.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
from c_ssh cimport uint8_t
1818

19-
cdef extern from "libssh/include/ed25519.h" nogil:
19+
cdef extern from "libssh/ed25519.h" nogil:
2020
enum:
2121
ED25519_PK_LEN
2222
ED25519_SK_LEN

ssh/c_gssapi.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ from c_wrapper cimport ssh_hmac_e
1919
from c_callbacks cimport ssh_packet_callbacks
2020
from c_ed25519 cimport ed25519_pubkey, ed25519_privkey
2121

22-
cdef extern from "libssh/include/gssapi.h" nogil:
22+
cdef extern from "libssh/gssapi.h" nogil:
2323
enum:
2424
SSH_OID_TAG
2525
struct ssh_gssapi_struct:

ssh/c_kex.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
from c_ssh cimport ssh_session, ssh_kex_types_e, uint32_t
1818

19-
cdef extern from "libssh/include/kex.h" nogil:
19+
cdef extern from "libssh/kex.h" nogil:
2020
enum:
2121
SSH_KEX_METHODS
2222
struct ssh_kex_struct:

ssh/c_keys.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
from c_ssh cimport ssh_session, ssh_string
1818

19-
cdef extern from "libssh/include/keys.h" nogil:
19+
cdef extern from "libssh/keys.h" nogil:
2020
struct ssh_public_key_struct:
2121
int type
2222
const char *type_c

0 commit comments

Comments
 (0)