Diff for /libaitrpc/src/aitrpc.c between versions 1.16 and 1.17

version 1.16, 2015/01/15 01:42:37 version 1.17, 2015/01/21 21:17:05
Line 12  terms: Line 12  terms:
 All of the documentation and software included in the ELWIX and AITNET  All of the documentation and software included in the ELWIX and AITNET
 Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>  Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>
   
Copyright 2004 - 2014Copyright 2004 - 2015
         by Michael Pounov <misho@elwix.org>.  All rights reserved.          by Michael Pounov <misho@elwix.org>.  All rights reserved.
   
 Redistribution and use in source and binary forms, with or without  Redistribution and use in source and binary forms, with or without
Line 188  rpc_Read(int sock, int type, int flags, sockaddr_t * _ Line 188  rpc_Read(int sock, int type, int flags, sockaddr_t * _
                 }                  }
                 if (type == SOCK_STREAM)                  if (type == SOCK_STREAM)
                         ret = recv(sock, buf, len, flags);                          ret = recv(sock, buf, len, flags);
                   else if (type == SOCK_EXT)
                           ret = read(sock, buf, len);
                 else if (type == SOCK_BPF && sa) {                  else if (type == SOCK_BPF && sa) {
                         ret = read(sock, AIT_GET_BUF(&v), AIT_LEN(&v));                          ret = read(sock, AIT_GET_BUF(&v), AIT_LEN(&v));
                         if (ret > 0) {                          if (ret > 0) {
Line 311  rpc_Write(int sock, int type, int flags, sockaddr_t *  Line 313  rpc_Write(int sock, int type, int flags, sockaddr_t * 
                 }                  }
                 if (type == SOCK_STREAM)                  if (type == SOCK_STREAM)
                         ret = send(sock, buf, len, flags);                          ret = send(sock, buf, len, flags);
                   else if (type == SOCK_EXT)
                           ret = write(sock, buf, len);
                 else if (type == SOCK_BPF && sa) {                  else if (type == SOCK_BPF && sa) {
                         ret = write(sock, AIT_GET_BUF(&v), AIT_LEN(&v));                          ret = write(sock, AIT_GET_BUF(&v), AIT_LEN(&v));
                 } else if (sa)                  } else if (sa)

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


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>