예제 #1
0
파일: ep.c 프로젝트: WongTai/nanomsg
int nn_ep_ispeer (struct nn_ep *self, int socktype)
{
    return nn_sock_ispeer (self->sock, socktype);
}
예제 #2
0
파일: pipe.c 프로젝트: javarange/nanomsg
int nn_pipebase_ispeer (struct nn_pipebase *self, int socktype)
{
    return nn_sock_ispeer (self->sock, socktype);
}