예제 #1
0
파일: winplink.c 프로젝트: svn2github/kitty
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
파일: winhsock.c 프로젝트: svn2github/kitty
static void sk_handle_write_eof(Socket s)
{
    Handle_Socket ps = (Handle_Socket) s;

    handle_write_eof(ps->send_h);
}
예제 #4
0
파일: winproxy.c 프로젝트: albuer/puttyplus
static void sk_localproxy_write_eof(Socket s)
{
    Local_Proxy_Socket ps = (Local_Proxy_Socket) s;

    handle_write_eof(ps->to_cmd_h);
}