Skip to content
Snippets Groups Projects
Select Git revision
  • ea9f3b5d767983e241dafb873b7b6cc06d62a2c7
  • release default protected
  • master protected
  • hotfix/GrpcParameters
  • XX-4441
  • tls-websockets
  • hotfix/allow-web-creds
  • hotfix/nilCert
  • XX-3566_const_time_token_compare
  • AceVentura/AccountBackup
  • dev
  • waitingRoundsRewrite
  • fullRateLimit
  • XX-3564/TlsCipherSuite
  • XX-3563/DisableTlsCheck
  • notls
  • url-repo-rename
  • perftuning
  • Anne/CI2
  • AddedGossipLogging
  • hotfix/connectionReduction
  • v0.0.6
  • v0.0.4
  • v0.0.5
  • v0.0.3
  • v0.0.2
  • v0.0.1
27 results

headers_js.go

Blame
  • headers_js.go 180 B
    //go:build js && wasm
    
    package connect
    
    import "net/http"
    
    func (wc *webConn) addHeaders(header http.Header) http.Header {
    	header.Add("js.fetch:mode", "no-cors")
    	return header
    }