diff options
author | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-12-06 22:48:56 +0100 |
---|---|---|
committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-12-06 22:48:56 +0100 |
commit | a1e05c62ae73a87a8c52d09c2f31fc7bc2b60d0e (patch) | |
tree | 78b200fdc1644f141f42256333b9feb62e62648a /include/libssh/session.h | |
parent | 076e884873315131363a4350c538fac6a028da53 (diff) | |
download | libssh-a1e05c62ae73a87a8c52d09c2f31fc7bc2b60d0e.tar.gz libssh-a1e05c62ae73a87a8c52d09c2f31fc7bc2b60d0e.tar.xz libssh-a1e05c62ae73a87a8c52d09c2f31fc7bc2b60d0e.zip |
struct socket -> struct ssh_socket_struct +typedef
Diffstat (limited to 'include/libssh/session.h')
-rw-r--r-- | include/libssh/session.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libssh/session.h b/include/libssh/session.h index cea2f739..09ed655d 100644 --- a/include/libssh/session.h +++ b/include/libssh/session.h @@ -41,7 +41,7 @@ enum ssh_session_state_e { struct ssh_session_struct { struct error_struct error; - struct socket *socket; + struct ssh_socket_struct *socket; char *serverbanner; char *clientbanner; int protoversion; |