Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for guessIsLoginSTSReq (0.12 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. cmd/generic-handlers_contrib.go

     * limitations under the License.
     */
    
    package cmd
    
    import (
    	"net/http"
    	"strings"
    )
    
    // guessIsLoginSTSReq - returns true if incoming request is Login STS user
    func guessIsLoginSTSReq(req *http.Request) bool {
    	if req == nil {
    		return false
    	}
    	return strings.HasPrefix(req.URL.Path, loginPathPrefix) ||
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Apr 30 15:50:39 GMT 2021
    - 995 bytes
    - Click Count (0)
Back to Top