.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. tags
  2. AGENTS.md
  3. docs-src/pages/AGENTS.md
  4. plans/
  5. work/
  6. # Ignore executables (no extension) but not source files
  7. example/server
  8. !example/server.*
  9. example/client
  10. !example/client.*
  11. example/hello
  12. !example/hello.*
  13. example/simplecli
  14. !example/simplecli.*
  15. example/simplesvr
  16. !example/simplesvr.*
  17. example/benchmark
  18. !example/benchmark.*
  19. example/redirect
  20. !example/redirect.*
  21. example/ssecli
  22. !example/ssecli.*
  23. example/ssecli-stream
  24. !example/ssecli-stream.*
  25. example/ssesvr
  26. !example/ssesvr.*
  27. example/upload
  28. !example/upload.*
  29. example/one_time_request
  30. !example/one_time_request.*
  31. example/server_and_client
  32. !example/server_and_client.*
  33. example/accept_header
  34. !example/accept_header.*
  35. example/wsecho
  36. !example/wsecho.*
  37. example/*.pem
  38. test/httplib.cc
  39. test/httplib.h
  40. test/test
  41. test/test_mbedtls
  42. test/test_wolfssl
  43. test/test_no_tls
  44. test/server_fuzzer
  45. test/client_fuzzer
  46. test/header_parser_fuzzer
  47. test/url_parser_fuzzer
  48. test/test_proxy
  49. test/test_proxy_mbedtls
  50. test/test_proxy_wolfssl
  51. test/test_split
  52. test/test_split_mbedtls
  53. test/test_split_wolfssl
  54. test/test_split_no_tls
  55. test/test_websocket_heartbeat
  56. test/test_websocket_thread_safety
  57. test/test_thread_pool
  58. test/test_benchmark
  59. test/test.xcodeproj/xcuser*
  60. test/test.xcodeproj/*/xcuser*
  61. test/*.o
  62. test/*.pem
  63. test/*.srl
  64. test/*.log
  65. test/_build_*
  66. benchmark/server*
  67. *.swp
  68. build/
  69. Debug
  70. Release
  71. *.vcxproj.user
  72. *.sdf
  73. *.suo
  74. *.opensdf
  75. *.db
  76. ipch
  77. *.dSYM
  78. *.pyc
  79. .*
  80. !/.gitattributes
  81. !/.github