Displaying 1 result from an estimated 1 matches for "got_value".
Did you mean:
  get_value
  
2001 Jan 29
0
Failed to set socket option
...et_socket_options before &options(%d, %s)\n", fd, options));
   114
   115          while (next_token(&options,tok," \t,", sizeof(tok))) {
   116                  int ret=0,i;
   117                  int value = 1;
   118                  char *p;
   119                  BOOL got_value = False;
   120
   121
   122                  if ((p = strchr(tok,'='))) {
   123                          *p = 0;
   124                          value = atoi(p+1);
   125                          got_value = True;
   126                  }
   127
   128                  for (i=0;socket_o...