BUGS 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. Known problems/bugs in neon -*- text -*-
  2. ---------------------------
  3. * several reports of issues with long-lived sessions causing problems
  4. with GSSAPI auth using mod_auth_kerb. May be a server problem, but
  5. needs further investigation to be sure.
  6. * 2818 requires that a on rejection of the SSL server cert, a "bad certificate"
  7. message should be sent - this is not being done currently (and can probably
  8. only be done with OpenSSL by actually doing cert verification in the verify
  9. callback)
  10. * ne_lock_discover does not handle multiple (shared) locks on
  11. a single resource.
  12. * SSL session caching issues; only cache for clean shutdowns, and
  13. only cache on shutdown, since the SSL_SESSION may change during
  14. an ne_session?
  15. * perhaps allow a per-Server-header hack for "Darwin Streaming Server
  16. 4.0" which doesn't terminate the response headers:
  17. http://bugzilla.gnome.org/show_bug.cgi?id=366331
  18. HTTP/1.1 200 OK
  19. Server: Darwin Streaming Server 4.0
  20. Content-Type: audio/mpeg
  21. Cache-Control: no-cache
  22. Pragma: no-cache
  23. Connection: close
  24. W8޳����s0��
  25. * for a server with multiple A addresses, a successful connect() will
  26. "pin" that address for future attempts to connect. If subsequently
  27. a connect() fails, neon should at least iterate through the entire
  28. address list and at best should do the DNS lookup again.
  29. * should 207 code strclean the error string from the response body?
  30. * load_client_cert fails with:
  31. load_client_cert: (did not fail to load clicert without pkey)
  32. on RHEL4 openssl.
  33. * --with-ca-bundle only allows trusting a PEM bundle; support
  34. by directory as well