summaryrefslogtreecommitdiff
path: root/src/pymscp.c
AgeCommit message (Collapse)Author
2024-02-04drop python binding supportRyo Nakamura
2024-01-18add SPDX-License-Identifier to source filesRyo Nakamura
2023-11-25add -I interval optionRyo Nakamura
-I INTERVAL option inserts sleep for interval (seconds) between SSH connection attempts (issue #7).
2023-11-01add -g option to specify TCP cc algorithmRyo Nakamura
This commit introduce SSH_OPTIONS_CCALGO option to the libssh patch and add -g CONGESTION option to mscp.
2023-08-30fix libmscp python bindings.Ryo Nakamura
- fix libmscp install path by setup.py with data_files - fix return values of mscp_get_stats() - add examples directory for mscp python binding
2023-08-04add -F ssh_config optionRyo Nakamura
2023-03-15rename mscp_prepare to mscp_scanRyo Nakamura
2023-03-15mscp: add -u max_startups option.Ryo Nakamura
pymscp also accepts keyword 'max_startups' (int).
2023-03-15fix: when msg_fd is 0, use STDOUT_FILENORyo Nakamura
2023-03-13fix mscp.pyRyo Nakamura
2023-03-12little cleanup for python bindingsRyo Nakamura
2023-03-12mscp copy via python bindings works.Ryo Nakamura
ToDo: memory for struct instance in pymscp.c is not released until mscp.free() is called. It is memory leak in a typical pyhotn usage. Use python extension refcnt instead.
2023-03-11add mscp and pymscp python modules.Ryo Nakamura
pymscp is a C Python wrapper for libmscp functions. mscp module provides simple (?) Python API.
2023-03-11start to implement pymscp.cRyo Nakamura