Skip to content

Commit c0e6b67

Browse files
authored
Sftp attrs (#124)
* Minor fixes for kdb int * Added SFTP attribute flags. Updated sftp tests - resolves #119 * Updated change log
1 parent 9b8b5b3 commit c0e6b67

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1491
-1334
lines changed

Changelog.rst

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
Change Log
22
=============
33

4+
0.23.0
5+
++++++
6+
7+
Changes
8+
-------
9+
10+
* Added ``ssh2.sftp.LIBSSH2_SFTP_ATTR_*`` constants for checking and setting SFTP attributes.
11+
12+
Fixes
13+
-----
14+
15+
* ``Session.userauth_keyboardinteractive`` would cause segmentation fault.
16+
17+
418
0.20.0
519
++++++
620

@@ -23,7 +37,7 @@ Changes
2337
Fixes
2438
------
2539

26-
* Session.userauth_publickey_frommemory would not work without an empty publickey provided - #86
40+
* ``Session.userauth_publickey_frommemory`` would not work without an empty passphrase provided - #86
2741

2842
Packaging
2943
----------

ssh2/agent.c

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ssh2/agent.pxd

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# This file is part of ssh2-python.
2-
# Copyright (C) 2017 Panos Kittenis
3-
2+
# Copyright (C) 2017-2020 Panos Kittenis
3+
#
44
# This library is free software; you can redistribute it and/or
55
# modify it under the terms of the GNU Lesser General Public
66
# License as published by the Free Software Foundation, version 2.1.
7-
7+
#
88
# This library is distributed in the hope that it will be useful,
99
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1010
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1111
# Lesser General Public License for more details.
12-
12+
#
1313
# You should have received a copy of the GNU Lesser General Public
1414
# License along with this library; if not, write to the Free Software
1515
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

ssh2/agent.pyx

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# This file is part of ssh2-python.
2-
# Copyright (C) 2017 Panos Kittenis
3-
2+
# Copyright (C) 2017-2020 Panos Kittenis
3+
#
44
# This library is free software; you can redistribute it and/or
55
# modify it under the terms of the GNU Lesser General Public
66
# License as published by the Free Software Foundation, version 2.1.
7-
7+
#
88
# This library is distributed in the hope that it will be useful,
99
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1010
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1111
# Lesser General Public License for more details.
12-
12+
#
1313
# You should have received a copy of the GNU Lesser General Public
1414
# License along with this library; if not, write to the Free Software
1515
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

ssh2/c_sftp.pxd

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# This file is part of ssh2-python.
2-
# Copyright (C) 2017 Panos Kittenis
3-
2+
# Copyright (C) 2017-2020 Panos Kittenis
3+
#
44
# This library is free software; you can redistribute it and/or
55
# modify it under the terms of the GNU Lesser General Public
66
# License as published by the Free Software Foundation, version 2.1.
7-
7+
#
88
# This library is distributed in the hope that it will be useful,
99
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1010
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1111
# Lesser General Public License for more details.
12-
12+
#
1313
# You should have received a copy of the GNU Lesser General Public
1414
# License along with this library; if not, write to the Free Software
1515
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
@@ -79,6 +79,13 @@ cdef extern from "libssh2_sftp.h" nogil:
7979
LIBSSH2_SFTP_S_IROTH # R for other
8080
LIBSSH2_SFTP_S_IWOTH # W for other
8181
LIBSSH2_SFTP_S_IXOTH # X for other
82+
# SFTP attributes
83+
enum:
84+
LIBSSH2_SFTP_ATTR_SIZE
85+
LIBSSH2_SFTP_ATTR_UIDGID
86+
LIBSSH2_SFTP_ATTR_PERMISSIONS
87+
LIBSSH2_SFTP_ATTR_ACMODTIME
88+
LIBSSH2_SFTP_ATTR_EXTENDED
8289
int LIBSSH2_SFTP_S_ISLNK(unsigned long m)
8390
int LIBSSH2_SFTP_S_ISREG(unsigned long m)
8491
int LIBSSH2_SFTP_S_ISDIR(unsigned long m)

ssh2/c_ssh2.pxd

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# This file is part of ssh2-python.
2-
# Copyright (C) 2017 Panos Kittenis
3-
2+
# Copyright (C) 2017-2020 Panos Kittenis
3+
#
44
# This library is free software; you can redistribute it and/or
55
# modify it under the terms of the GNU Lesser General Public
66
# License as published by the Free Software Foundation, version 2.1.
7-
7+
#
88
# This library is distributed in the hope that it will be useful,
99
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1010
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1111
# Lesser General Public License for more details.
12-
12+
#
1313
# You should have received a copy of the GNU Lesser General Public
1414
# License along with this library; if not, write to the Free Software
1515
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

ssh2/channel.c

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ssh2/channel.pxd

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# This file is part of ssh2-python.
2-
# Copyright (C) 2017 Panos Kittenis
3-
2+
# Copyright (C) 2017-2020 Panos Kittenis
3+
#
44
# This library is free software; you can redistribute it and/or
55
# modify it under the terms of the GNU Lesser General Public
66
# License as published by the Free Software Foundation, version 2.1.
7-
7+
#
88
# This library is distributed in the hope that it will be useful,
99
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1010
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1111
# Lesser General Public License for more details.
12-
12+
#
1313
# You should have received a copy of the GNU Lesser General Public
1414
# License along with this library; if not, write to the Free Software
1515
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

ssh2/channel.pyx

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# This file is part of ssh2-python.
2-
# Copyright (C) 2017 Panos Kittenis
3-
2+
# Copyright (C) 2017-2020 Panos Kittenis
3+
#
44
# This library is free software; you can redistribute it and/or
55
# modify it under the terms of the GNU Lesser General Public
66
# License as published by the Free Software Foundation, version 2.1.
7-
7+
#
88
# This library is distributed in the hope that it will be useful,
99
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1010
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1111
# Lesser General Public License for more details.
12-
12+
#
1313
# You should have received a copy of the GNU Lesser General Public
1414
# License along with this library; if not, write to the Free Software
1515
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

ssh2/error_codes.c

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ssh2/error_codes.pxd

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# This file is part of ssh2-python.
2-
# Copyright (C) 2017 Panos Kittenis
3-
2+
# Copyright (C) 2017-2020 Panos Kittenis
3+
#
44
# This library is free software; you can redistribute it and/or
55
# modify it under the terms of the GNU Lesser General Public
66
# License as published by the Free Software Foundation, version 2.1.
7-
7+
#
88
# This library is distributed in the hope that it will be useful,
99
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1010
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1111
# Lesser General Public License for more details.
12-
12+
#
1313
# You should have received a copy of the GNU Lesser General Public
1414
# License along with this library; if not, write to the Free Software
1515
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

ssh2/error_codes.pyx

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# This file is part of ssh2-python.
2-
# Copyright (C) 2017 Panos Kittenis
3-
2+
# Copyright (C) 2017-2020 Panos Kittenis
3+
#
44
# This library is free software; you can redistribute it and/or
55
# modify it under the terms of the GNU Lesser General Public
66
# License as published by the Free Software Foundation, version 2.1.
7-
7+
#
88
# This library is distributed in the hope that it will be useful,
99
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1010
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1111
# Lesser General Public License for more details.
12-
12+
#
1313
# You should have received a copy of the GNU Lesser General Public
1414
# License along with this library; if not, write to the Free Software
1515
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

ssh2/exceptions.c

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ssh2/exceptions.pyx

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# This file is part of ssh2-python.
2-
# Copyright (C) 2017-2018 Panos Kittenis
3-
2+
# Copyright (C) 2017-2020 Panos Kittenis
3+
#
44
# This library is free software; you can redistribute it and/or
55
# modify it under the terms of the GNU Lesser General Public
66
# License as published by the Free Software Foundation, version 2.1.
7-
7+
#
88
# This library is distributed in the hope that it will be useful,
99
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1010
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1111
# Lesser General Public License for more details.
12-
12+
#
1313
# You should have received a copy of the GNU Lesser General Public
1414
# License along with this library; if not, write to the Free Software
1515
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

ssh2/fileinfo.c

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ssh2/fileinfo.pxd

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# This file is part of ssh2-python.
2+
# Copyright (C) 2017-2020 Panos Kittenis
3+
#
4+
# This library is free software; you can redistribute it and/or
5+
# modify it under the terms of the GNU Lesser General Public
6+
# License as published by the Free Software Foundation, version 2.1.
7+
#
8+
# This library is distributed in the hope that it will be useful,
9+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
# Lesser General Public License for more details.
12+
#
13+
# You should have received a copy of the GNU Lesser General Public
14+
# License along with this library; if not, write to the Free Software
15+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16+
117
cimport c_ssh2
218

319
IF EMBEDDED_LIB:

ssh2/fileinfo.pyx

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# This file is part of ssh2-python.
2-
# Copyright (C) 2017 Panos Kittenis
3-
2+
# Copyright (C) 2017-2020 Panos Kittenis
3+
#
44
# This library is free software; you can redistribute it and/or
55
# modify it under the terms of the GNU Lesser General Public
66
# License as published by the Free Software Foundation, version 2.1.
7-
7+
#
88
# This library is distributed in the hope that it will be useful,
99
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1010
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1111
# Lesser General Public License for more details.
12-
12+
#
1313
# You should have received a copy of the GNU Lesser General Public
1414
# License along with this library; if not, write to the Free Software
1515
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

ssh2/knownhost.c

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ssh2/knownhost.pxd

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# This file is part of ssh2-python.
2-
# Copyright (C) 2017 Panos Kittenis
3-
2+
# Copyright (C) 2017-2020 Panos Kittenis
3+
#
44
# This library is free software; you can redistribute it and/or
55
# modify it under the terms of the GNU Lesser General Public
66
# License as published by the Free Software Foundation, version 2.1.
7-
7+
#
88
# This library is distributed in the hope that it will be useful,
99
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1010
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1111
# Lesser General Public License for more details.
12-
12+
#
1313
# You should have received a copy of the GNU Lesser General Public
1414
# License along with this library; if not, write to the Free Software
1515
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

ssh2/knownhost.pyx

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# This file is part of ssh2-python.
2-
# Copyright (C) 2017 Panos Kittenis
3-
2+
# Copyright (C) 2017-2020 Panos Kittenis
3+
#
44
# This library is free software; you can redistribute it and/or
55
# modify it under the terms of the GNU Lesser General Public
66
# License as published by the Free Software Foundation, version 2.1.
7-
7+
#
88
# This library is distributed in the hope that it will be useful,
99
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1010
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1111
# Lesser General Public License for more details.
12-
12+
#
1313
# You should have received a copy of the GNU Lesser General Public
1414
# License along with this library; if not, write to the Free Software
1515
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

ssh2/listener.c

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)