Diff for /Amaya/amaya/AHTBridge.c between versions 1.49 and 1.50

version 1.49, 1998/01/26 17:26:32 version 1.50, 1998/02/03 21:38:44
Line 12 Line 12
  * requests.   * requests.
  *   *
  * Author: J Kahan   * Author: J Kahan
  *         R. Guetari/J. Kahan Windows NT/95 routines   *         J. K./R. G. Windows NT/95 routines
  *   *
  */   */
 #ifndef AMAYA_JAVA  #ifndef AMAYA_JAVA
Line 548  HTPriority          p; Line 548  HTPriority          p;
                 me->urlName, sock, ops, me->output);                  me->urlName, sock, ops, me->output);
 #endif /* DEBUG_LIBWWW */         #endif /* DEBUG_LIBWWW */       
      } /* if *rqp */       } /* if *rqp */
      
   #ifdef __WINDOWS   
     /* under windows, libwww requires an explicit FD_CLOSE registration 
      to detect HTTP responses not having a Content-Length header */
      status = HTEventrg_register (sock, rqp, ops | FD_CLOSE,
                                   cbf, p);
   #else
    status = HTEventrg_register (sock, rqp, ops,     status = HTEventrg_register (sock, rqp, ops,
                                 cbf, p);                                  cbf, p);
   #endif /* __WINDOWS */
   
    return (status);     return (status);
 }  }
   

Removed from v.1.49  
changed lines
  Added in v.1.50


Webmaster