Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.8 KiB

  1. The entries here pertain to CODE CLARITY/FIXES that are not BIG enough
  2. to be RAIDED
  3. Infocomm bug/wish list for 3.0
  4. 1. The caching routines under common should have a way of knowing whether
  5. handle caching has been disabled. This is useful for knowing when to
  6. enable/disable the CacheScavenger in fcache.cxx
  7. By: - JohnsonA 4/8/96
  8. Fixed:
  9. 2. The quota is not consistently charged with the size of file
  10. caching objects.
  11. By: PhilliCh 4/8/96
  12. Fixed:
  13. 3. W3/FTP/possibly other services should use a cached token class explicitely
  14. to store user access tokens. Fix security.cxx such that it gives out
  15. CACHED_TOKEN pointers rather than converting it into HTOKEN
  16. By: PhilliCh & MuraliK 4/8/96
  17. Fixed:
  18. 4. Improve atq\sched.cxx to use GetTimer() (from svcs\irtl\timer.c) rather
  19. than GetTickCount().
  20. By: MuraliK 4/9/96
  21. Fixed: Phillich, 4/9/96
  22. 5. Split out infocomm\cache\ to make a reusable cache module.
  23. By: MuraliK 4/9/96
  24. 6. Split out svcs\w3\server\ssi (Server Side Includes) as a separate ISAPI
  25. dll rather than integrating SSI in the server engine.
  26. By: MuraliK 4/9/96
  27. 7. Split out ISAPI Application DLL interface from w3 service engine, to
  28. generate separate piece of standalond code for easy modifications.
  29. By: MuraliK 4/9/96
  30. 8. For AtqTransmitFileEx and AtqTransmitFile, we don't look at the
  31. HighPart portion of liBytesInFile.
  32. NOTE: we do not support HighPart in w3 as well ( i.e. we fail the request
  33. if HighPart != 0 )
  34. By: JohnsonA 4/9/96
  35. Fixed:
  36. 9. For infocomm, we should find a way of removing the extra thread
  37. in tsvcinfo/isvcinfo waiting for the shutdown event to occur.
  38. By: JohnsonA 4/10/96
  39. Fixed:
  40. 10. Use the cached security token in infocomm/services interface. Today we
  41. cast the cached object to HANDLE hToken, which will cause confusion in service
  42. code about what this really is.
  43. By: MuraliK 7/16/96