You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 20, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/bug_report.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,11 @@ labels: triage
6
6
assignees: ""
7
7
---
8
8
9
-
**Only for bugs found in the library! Otherwise, please go to the [discussions section](https://github.com/mathieucarbou/ESPAsyncWebServer/discussions)!**
9
+
**Only for bugs found in the library! Otherwise, please go to the [discussions section](https://github.com/ESP32Async/ESPAsyncWebServer/discussions)!**
10
10
11
11
**Please make sure to go through the recommendations before opening a bug report:**
@@ -42,7 +42,7 @@ This fork is based on [yubox-node-org/ESPAsyncWebServer](https://github.com/yubo
42
42
- (feat) **Resumable download** support using HEAD and bytes range
43
43
- (feat) `StreamConcat` example to show how to stream multiple files in one response
44
44
- (feat) Removed ESPIDF Editor (this is not the role of a web server library to do that - get the source files from the original repos if required)
45
-
- (perf) [AsyncTCPSock](https://github.com/mathieucarbou/AsyncTCPSock) support: AsyncTCP can be ignored and AsyncTCPSock used instead
45
+
- (perf) [AsyncTCPSock](https://github.com/ESP32Async/AsyncTCPSock) support: AsyncTCP can be ignored and AsyncTCPSock used instead
46
46
- (perf) `char*` overloads to avoid using `String`
47
47
- (perf) `DEFAULT_MAX_WS_CLIENTS` to change the number of allows WebSocket clients and use `cleanupClients()` to help cleanup resources about dead clients
48
48
- (perf) `setCloseClientOnQueueFull(bool)` which can be set on a client to either close the connection or discard messages but not close the connection when the queue is full
@@ -83,18 +83,18 @@ If you are an ESP8266 user and want to help improve current 3.x, you are more th
@@ -253,7 +253,7 @@ Middleware is a way to intercept requests to perform some operations on them, li
253
253
Middleware can either be attached to individual handlers, attached at the server level (thus applied to all handlers), or both.
254
254
They will be executed in the order they are attached, and they can stop the request processing by sending a response themselves.
255
255
256
-
You can have a look at the [SimpleServer.ino](https://github.com/mathieucarbou/ESPAsyncWebServer/blob/main/examples/SimpleServer/SimpleServer.ino) example for some use cases.
256
+
You can have a look at the [SimpleServer.ino](https://github.com/ESP32Async/ESPAsyncWebServer/blob/main/examples/SimpleServer/SimpleServer.ino) example for some use cases.
257
257
258
258
For example, such middleware would handle authentication and set some attributes on the request to make them available for the next middleware and for the handler which will process the request.
259
259
@@ -321,15 +321,6 @@ myHandler.addMiddleware(&authMiddleware); // add authentication to a specific ha
321
321
These callbacks can be called multiple times during request parsing, so this is up to the user to now call the `AsyncAuthenticationMiddleware.allowed(request)` if needed and ideally when the method is called for the first time.
322
322
These callbacks are also not triggering the whole middleware chain since they are not part of the request processing workflow (they are not the final handler).
323
323
324
-
325
-
## Maintainers
326
-
This fork of ESPAsyncWebServer and dependend libs are maintained as an opensource project at best effort level.
0 commit comments