Skip to content

Commit

Permalink
feat: change protocol order in the cli (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
jesusprubio authored Apr 25, 2024
1 parent 03fe7ad commit 9a6a90a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/protocols.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (

// Protocols included in the library.
var Protocols = []*Protocol{
{ID: "http", Request: requestHTTP, RHost: RandomCaptivePortal},
{ID: "tcp", Request: requestTCP, RHost: RandomTCPServer},
{ID: "dns", Request: requestDNS, RHost: RandomDomain},
{ID: "http", Request: requestHTTP, RHost: RandomCaptivePortal},
}

// ProtocolByID returns a protocol from the list.
Expand Down

0 comments on commit 9a6a90a

Please sign in to comment.