Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nxssh
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Алексей Аляев
nxssh
Commits
7bc9be0f
Commit
7bc9be0f
authored
Nov 08, 2016
by
Stas Korobeynikov
Committed by
Pavel Vainerman
Oct 03, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
requested log level
parent
b1b8ac2b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
34 additions
and
0 deletions
+34
-0
channels.c
channels.c
+5
-0
clientloop.c
clientloop.c
+10
-0
packet.c
packet.c
+5
-0
ssh.c
ssh.c
+9
-0
sshconnect.c
sshconnect.c
+5
-0
No files found.
channels.c
View file @
7bc9be0f
...
...
@@ -83,6 +83,11 @@
#include "authfd.h"
#include "pathnames.h"
#define PANIC
#define WARNING
#undef TEST
#undef DEBUG
/* -- channel core */
/*
...
...
clientloop.c
View file @
7bc9be0f
...
...
@@ -113,6 +113,16 @@
#include "ssherr.h"
#include "hostfile.h"
/*
* Set here the requested log level.
*/
#define PANIC
#define WARNING
#undef TEST
#undef DEBUG
/* import options */
extern
Options
options
;
...
...
packet.c
View file @
7bc9be0f
...
...
@@ -92,6 +92,11 @@
#define DBG(x)
#endif
#define PANIC
#define WARNING
#undef TEST
#undef DEBUG
#define PACKET_MAX_SIZE (256 * 1024)
struct
packet_state
{
...
...
ssh.c
View file @
7bc9be0f
...
...
@@ -115,6 +115,15 @@
#include "ssh-pkcs11.h"
#endif
/*
* Define TEST to get SYSLOG_LEVEL_DEBUG3.
*/
#define PANIC
#define WARNING
#undef TEST
#undef DEBUG
extern
char
*
__progname
;
/* Saves a copy of argv for setproctitle emulation */
...
...
sshconnect.c
View file @
7bc9be0f
...
...
@@ -65,6 +65,11 @@
#include "ssherr.h"
#include "authfd.h"
#define PANIC
#define WARNING
#undef TEST
#undef DEBUG
char
*
client_version_string
=
NULL
;
char
*
server_version_string
=
NULL
;
Key
*
previous_host_key
=
NULL
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment