Diff for /rpl/src/instructions_w1.c between versions 1.100 and 1.101

version 1.100, 2015/11/26 11:44:41 version 1.101, 2016/01/11 11:28:39
Line 3073  options_sockets(struct_processus *s_etat Line 3073  options_sockets(struct_processus *s_etat
         }          }
     }      }
   
   #   ifdef SO_PRIORITY
     if (((*s_socket).options & (1 << d_PRIORITY)) != 0)      if (((*s_socket).options & (1 << d_PRIORITY)) != 0)
     {      {
         if (setsockopt((*s_socket).socket, SOL_SOCKET, SO_PRIORITY,          if (setsockopt((*s_socket).socket, SOL_SOCKET, SO_PRIORITY,
Line 3081  options_sockets(struct_processus *s_etat Line 3082  options_sockets(struct_processus *s_etat
             return(d_erreur);              return(d_erreur);
         }          }
     }      }
   #   endif
   
     // Les deux options suivantes ne peuvent être positionnées simultanément.      // Les deux options suivantes ne peuvent être positionnées simultanément.
   
Line 3094  options_sockets(struct_processus *s_etat Line 3096  options_sockets(struct_processus *s_etat
         }          }
     }      }
   
   #   ifdef SO_RCVBUFFORCE
     if (((*s_socket).options & (1 << d_FORCE_RECEIVE_BUFFER)) != 0)      if (((*s_socket).options & (1 << d_FORCE_RECEIVE_BUFFER)) != 0)
     {      {
         if (setsockopt((*s_socket).socket, SOL_SOCKET, SO_RCVBUFFORCE,          if (setsockopt((*s_socket).socket, SOL_SOCKET, SO_RCVBUFFORCE,
Line 3103  options_sockets(struct_processus *s_etat Line 3106  options_sockets(struct_processus *s_etat
             return(d_erreur);              return(d_erreur);
         }          }
     }      }
   #   endif
   
     // Même remarque      // Même remarque
   
Line 3116  options_sockets(struct_processus *s_etat Line 3120  options_sockets(struct_processus *s_etat
         }          }
     }      }
   
   #   ifdef SO_SNDBUFFORCE
     if (((*s_socket).options & (1 << d_FORCE_SEND_BUFFER)) != 0)      if (((*s_socket).options & (1 << d_FORCE_SEND_BUFFER)) != 0)
     {      {
         if (setsockopt((*s_socket).socket, SOL_SOCKET, SO_SNDBUFFORCE,          if (setsockopt((*s_socket).socket, SOL_SOCKET, SO_SNDBUFFORCE,
Line 3125  options_sockets(struct_processus *s_etat Line 3130  options_sockets(struct_processus *s_etat
             return(d_erreur);              return(d_erreur);
         }          }
     }      }
   #   endif
   
     if (((*s_socket).options & (1 << d_RECEIVING_TIMEOUT)) != 0)      if (((*s_socket).options & (1 << d_RECEIVING_TIMEOUT)) != 0)
     {      {

Removed from v.1.100  
changed lines
  Added in v.1.101


CVSweb interface <joel.bertrand@systella.fr>