示例#1
0
int from_backend_eof(void *frontend_handle)
{
    handle_write_eof(stdout_handle);
    return FALSE;   /* do not respond to incoming EOF with outgoing */
}
示例#2
0
static bool plink_eof(Seat *seat)
{
    handle_write_eof(stdout_handle);
    return false;   /* do not respond to incoming EOF with outgoing */
}
示例#3
0
static void sk_handle_write_eof(Socket s)
{
    Handle_Socket ps = (Handle_Socket) s;

    handle_write_eof(ps->send_h);
}
示例#4
0
static void sk_localproxy_write_eof(Socket s)
{
    Local_Proxy_Socket ps = (Local_Proxy_Socket) s;

    handle_write_eof(ps->to_cmd_h);
}