Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LSH
lsh
Commits
8d65a829
Commit
8d65a829
authored
Sep 15, 1998
by
Niels Möller
Browse files
Trivial bug fixes.
Rev: src/alist.h:1.2 Rev: src/client_keyexchange.h:1.3
parent
c20095b2
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/alist.h
View file @
8d65a829
...
...
@@ -28,10 +28,10 @@
/* Abstract interface allows for multiple implementations ("real"
* alists, linear tables, hash tables */
stru
s
t
alist
stru
c
t
alist
{
void
*
(
*
get
)(
struct
alist
*
self
,
int
atom
);
void
(
*
set
)(
struct
alist
self
,
int
atom
,
void
*
value
);
void
(
*
set
)(
struct
alist
*
self
,
int
atom
,
void
*
value
);
};
#define ALIST_GET(alist, atom) ((alist)->get((alist), (atom)))
...
...
src/client_keyexchange.h
View file @
8d65a829
...
...
@@ -41,10 +41,10 @@ struct lookup_verifier
#define LOOKUP_VERIFIER(l, key) ((l)->lookup((l), (key)))
struct
dh_
algorithm_client
struct
dh_
client_exchange
{
struct
keyexchange_algorithm
super
;
struct
diffie_hellman_method
dh
;
struct
diffie_hellman_method
*
dh
;
struct
lookup_verifier
*
verifier
;
};
...
...
@@ -54,6 +54,7 @@ struct dh_client
struct
packet_handler
super
;
struct
diffie_hellman_instance
dh
;
struct
lookup_verifier
*
verifier
;
struct
install_keys
*
install
;
struct
packet_handler
*
saved_kexinit_handler
;
};
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment