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
b871ce66
Commit
b871ce66
authored
Feb 03, 2000
by
Niels Möller
Browse files
* src/client.c (make_accept_service_handler): Use UINT32 for the
service name. Rev: src/client.c:1.83 Rev: src/client.h:1.26
parent
55fb9496
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/client.c
View file @
b871ce66
...
...
@@ -60,7 +60,7 @@
(name accept_service_handler)
(super packet_handler)
(vars
(service simple
int
)
(service simple
UINT32
)
(c object command_continuation)
;; Do we really need the exception handler here?
(e object exception_handler)))
...
...
@@ -104,7 +104,7 @@ do_accept_service(struct packet_handler *c,
}
struct
packet_handler
*
make_accept_service_handler
(
int
service
,
make_accept_service_handler
(
UINT32
service
,
struct
command_continuation
*
c
,
struct
exception_handler
*
e
)
{
...
...
src/client.h
View file @
b871ce66
...
...
@@ -44,7 +44,7 @@ struct read_handler *make_client_read_line(struct ssh_connection *c);
struct
close_callback
*
make_client_close_handler
(
void
);
struct
packet_handler
*
make_accept_service_handler
(
int
service
,
make_accept_service_handler
(
UINT32
service
,
struct
command_continuation
*
c
,
struct
exception_handler
*
e
);
...
...
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