Fix: Auth Session

This commit is contained in:
2025-08-26 15:53:36 +00:00
parent b9f66f82a1
commit 34c828563c
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,