Fixed invalid declaration and missing argument
This commit is contained in:
parent
de1c08736f
commit
5c9a6408cf
@ -290,7 +290,7 @@ BOOL transport_connect_tls(rdpTransport* transport)
|
|||||||
transport->frontBio = targetTls->bio;
|
transport->frontBio = targetTls->bio;
|
||||||
if (!transport->frontBio)
|
if (!transport->frontBio)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "%s: unable to prepend a filtering TLS bio");
|
fprintf(stderr, "%s: unable to prepend a filtering TLS bio", __FUNCTION__);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -105,7 +105,7 @@ void transport_set_gateway_enabled(rdpTransport* transport, BOOL GatewayEnabled)
|
|||||||
void transport_set_nla_mode(rdpTransport* transport, BOOL NlaMode);
|
void transport_set_nla_mode(rdpTransport* transport, BOOL NlaMode);
|
||||||
void transport_get_read_handles(rdpTransport* transport, HANDLE* events, DWORD* count);
|
void transport_get_read_handles(rdpTransport* transport, HANDLE* events, DWORD* count);
|
||||||
BOOL tranport_is_write_blocked(rdpTransport* transport);
|
BOOL tranport_is_write_blocked(rdpTransport* transport);
|
||||||
BOOL tranport_drain_output_buffer(rdpTransport* transport);
|
int tranport_drain_output_buffer(rdpTransport* transport);
|
||||||
|
|
||||||
wStream* transport_receive_pool_take(rdpTransport* transport);
|
wStream* transport_receive_pool_take(rdpTransport* transport);
|
||||||
int transport_receive_pool_return(rdpTransport* transport, wStream* pdu);
|
int transport_receive_pool_return(rdpTransport* transport, wStream* pdu);
|
||||||
|
Loading…
Reference in New Issue
Block a user