mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 22:03:07 -06:00
Adds design documentation, and practical tutorial to Core/SSH: All tutorial examples are from the existing SshBasics reference example.
56 lines
862 B
Text
56 lines
862 B
Text
description "SSH2 protocol encapsulation, using libssh2.\377";
|
|
|
|
acceptflags
|
|
USEMALLOC,
|
|
LIBSSH2TRACE;
|
|
|
|
flags(LIBSSH2DEBUG) LIBSSH2DEBUG;
|
|
|
|
uses
|
|
Core;
|
|
|
|
uses(WIN32 | NOSO) plugin/z;
|
|
|
|
library(POSIX) "crypto ssl z";
|
|
|
|
library(WIN32) "ssl crypto crypt32";
|
|
|
|
library(WIN32) "usp10 gdi32 ws2_32";
|
|
|
|
link(WIN32 MSC SO) /nodefaultlib:libc;
|
|
|
|
file
|
|
SSH.h,
|
|
Core.h,
|
|
Core.cpp,
|
|
Malloc.cpp,
|
|
Session readonly separator,
|
|
Session.h,
|
|
Session.cpp,
|
|
SFtp readonly separator,
|
|
SFtp.h,
|
|
SFtp.cpp,
|
|
SFtpStream.cpp,
|
|
Channels readonly separator,
|
|
Channels.h,
|
|
Channels.cpp,
|
|
Scp.cpp,
|
|
Exec.cpp,
|
|
Tunnel.cpp,
|
|
Shell.cpp,
|
|
Helpers readonly separator,
|
|
Hosts.h,
|
|
Hosts.cpp,
|
|
"Library Files" readonly separator,
|
|
libssh2/libssh2_config.h,
|
|
libssh2upp.ext,
|
|
libssh2/COPYING,
|
|
Docs readonly separator,
|
|
src.tpp,
|
|
srcdoc.tpp,
|
|
Info readonly separator,
|
|
ReadMe.md,
|
|
Copying,
|
|
Todo,
|
|
Issues;
|
|
|