Fix: Auth Session

This commit is contained in:
2025-08-26 15:53:36 +00:00
parent 71a62eca3f
commit 9b5b3ae820
25 changed files with 1142 additions and 44 deletions

View File

@ -708,7 +708,7 @@ func handleUploadWithAdaptiveIO(w http.ResponseWriter, r *http.Request) {
// Use adaptive streaming engine
clientIP := getClientIP(r)
sessionID := generateSessionID()
sessionID := generateSessionID("", "")
written, err := globalStreamingEngine.StreamWithAdaptation(
dst,
@ -804,7 +804,7 @@ func handleDownloadWithAdaptiveIO(w http.ResponseWriter, r *http.Request) {
// Use adaptive streaming engine
clientIP := getClientIP(r)
sessionID := generateSessionID()
sessionID := generateSessionID("", "")
n, err := globalStreamingEngine.StreamWithAdaptation(
w,