[BACK]Return to sock.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / aucat

Diff for /src/usr.bin/aucat/Attic/sock.c between version 1.16 and 1.17

version 1.16, 2009/03/15 10:31:37 version 1.17, 2009/05/16 11:15:26
Line 701 
Line 701 
         return 1;          return 1;
 }  }
   
   int
   sock_hello(struct sock *f)
   {
           struct amsg_hello *p = &f->rmsg.u.hello;
   
           DPRINTF("sock_hello: from <%s>\n", p->who);
           if ((p->proto & AMSG_PLAY) && dev_mix == NULL) {
                   DPRINTF("sock_hello: playback not supported\n");
                   return 0;
           }
           if ((p->proto & AMSG_REC) && dev_sub == NULL) {
                   DPRINTF("sock_hello: recording not supported\n");
                   return 0;
           }
           if ((p->proto & ~(AMSG_PLAY | AMSG_REC)) != 0) {
                   DPRINTF("sock_hello: %x: unsupported proto\n", p->proto);
                   return 0;
           }
           return 1;
   }
   
 /*  /*
  * execute message in f->rmsg and change the state accordingly; return 1   * execute message in f->rmsg and change the state accordingly; return 1
  * on success, and 0 on failure, in which case the socket is destroyed.   * on success, and 0 on failure, in which case the socket is destroyed.
Line 832 
Line 853 
                 sock_setvol(f, MIDI_TO_ADATA(m->u.vol.ctl));                  sock_setvol(f, MIDI_TO_ADATA(m->u.vol.ctl));
                 f->rtodo = sizeof(struct amsg);                  f->rtodo = sizeof(struct amsg);
                 f->rstate = SOCK_RMSG;                  f->rstate = SOCK_RMSG;
                   break;
           case AMSG_HELLO:
                   DPRINTFN(2, "sock_execmsg: %p: HELLO\n", f);
                   if (f->pstate != SOCK_INIT) {
                           DPRINTF("sock_execmsg: %p: HELLO, bad state\n", f);
                           aproc_del(f->pipe.file.rproc);
                           return 0;
                   }
                   if (!sock_hello(f)) {
                           aproc_del(f->pipe.file.rproc);
                           return 0;
                   }
                   AMSG_INIT(m);
                   m->cmd = AMSG_ACK;
                   f->rstate = SOCK_RRET;
                   f->rtodo = sizeof(struct amsg);
                 break;                  break;
         default:          default:
                 DPRINTF("sock_execmsg: %p bogus command\n", f);                  DPRINTF("sock_execmsg: %p bogus command\n", f);

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17