Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for dummyTokenValidate (0.07 seconds)

  1. internal/grid/debug.go

    			Dialer: ConnectWS(dialer.DialContext,
    				dummyNewToken,
    				nil),
    			Local:        host,
    			Hosts:        hosts,
    			AuthFn:       dummyNewToken,
    			AuthToken:    dummyTokenValidate,
    			BlockConnect: ready,
    			RoutePath:    RoutePath,
    		})
    		if err != nil {
    			return nil, err
    		}
    		m := mux.NewRouter()
    		m.Handle(RoutePath, manager.Handler(dummyRequestValidate))
    Created: 2026-04-05 19:28
    - Last Modified: 2025-09-28 20:59
    - 4.4K bytes
    - Click Count (0)
  2. internal/grid/connection_test.go

    		Dialer: ConnectWS(dialer.DialContext,
    			dummyNewToken,
    			nil),
    		Local:        localHost,
    		Hosts:        hosts,
    		AuthFn:       dummyNewToken,
    		AuthToken:    dummyTokenValidate,
    		BlockConnect: connReady,
    	})
    	errFatal(err)
    
    	// 1: Echo
    	errFatal(local.RegisterSingleHandler(handlerTest, func(payload []byte) ([]byte, *RemoteErr) {
    		t.Log("1: server payload: ", len(payload), "bytes.")
    Created: 2026-04-05 19:28
    - Last Modified: 2025-04-09 14:28
    - 5.9K bytes
    - Click Count (0)
Back to Top