Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
66e7634e
Commit
66e7634e
authored
5 months ago
by
Deucе
Browse files
Options
Downloads
Patches
Plain Diff
We need separate context for client to server
parent
79fa3c0b
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Pipeline
#7358
passed
5 months ago
Stage: build
Stage: test
Stage: cleanup
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/ssh/ssh-trans.h
+14
-6
14 additions, 6 deletions
src/ssh/ssh-trans.h
with
14 additions
and
6 deletions
src/ssh/ssh-trans.h
+
14
−
6
View file @
66e7634e
...
...
@@ -152,13 +152,21 @@ typedef struct deuce_ssh_transport_state {
void
*
key_algo_cbdata
;
deuce_ssh_key_algo_t
key_algo_selected
;
void
*
enc_cbdata
;
deuce_ssh_enc_t
enc_selected
;
void
*
mac_cbdata
;
deuce_ssh_mac_t
mac_selected
;
void
*
comp_cbdata
;
deuce_ssh_comp_t
comp_selected
;
void
*
enc_c2s_cbdata
;
deuce_ssh_enc_t
enc_c2s_selected
;
void
*
enc_s2c_cbdata
;
deuce_ssh_enc_t
enc_s2c_selected
;
void
*
mac_c2s_cbdata
;
deuce_ssh_mac_t
mac_c2s_selected
;
void
*
mac_s2c_cbdata
;
deuce_ssh_mac_t
mac_s2c_selected
;
void
*
comp_c2s_cbdata
;
deuce_ssh_comp_t
comp_c2s_selected
;
void
*
comp_s2c_cbdata
;
deuce_ssh_comp_t
comp_s2c_selected
;
}
*
deuce_ssh_transport_state_t
;
int
deuce_ssh_transport_init
(
deuce_ssh_session_t
sess
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment