HomeSort by: relevance | last modified time | path
    Searched defs:sock_type (Results 1 - 3 of 3) sorted by relevancy

  /src/usr.sbin/perfused/
perfused.c 102 get_mount_info(int fd, struct perfuse_mount_info *pmi, int sock_type)
186 if ((sock_type == SOCK_DGRAM) && sock) {
211 int sock_type; local in function:new_mount
233 sock_type = pmnt_flags & PMNT_DGRAM ? SOCK_DGRAM : SOCK_SEQPACKET;
234 get_mount_info(fd, &pmi, sock_type);
429 int sock_type; local in function:main
452 len = sizeof(sock_type);
453 if (getsockopt(s, SOL_SOCKET, SO_TYPE, &sock_type, &len) != 0)
456 switch(sock_type) {
477 DERRX(EX_SOFTWARE, "unexpected so_type %d", sock_type);
    [all...]
msg.c 58 int sock_type = SOCK_SEQPACKET; local in function:perfused_open_sock
70 sock_type = SOCK_DGRAM;
101 if (sock_type == SOCK_DGRAM) {
  /src/lib/libperfuse/
perfuse.c 180 int sock_type = SOCK_SEQPACKET; local in function:perfuse_open
189 sock_type = SOCK_DGRAM;
228 if (socketpair(PF_LOCAL, sock_type, 0, sv) != 0) {

Completed in 14 milliseconds