We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b1de2f commit c80d054Copy full SHA for c80d054
protocols.go
@@ -11,6 +11,7 @@ const (
11
P_IP6ZONE = 0x002A
12
P_QUIC = 0x01CC
13
P_SCTP = 0x0084
14
+ P_CIRCUIT = 0x0122
15
P_UDT = 0x012D
16
P_UTP = 0x012E
17
P_UNIX = 0x0190
@@ -81,6 +82,14 @@ var (
81
82
Size: 16,
83
Transcoder: TranscoderPort,
84
}
85
+
86
+ protoCIRCUIT = Protocol{
87
+ Code: P_CIRCUIT,
88
+ Size: 0,
89
+ Name: "p2p-circuit",
90
+ VCode: CodeToVarint(P_CIRCUIT),
91
+ }
92
93
protoONION2 = Protocol{
94
Name: "onion",
95
Code: P_ONION,
@@ -165,6 +174,7 @@ func init() {
165
174
protoIP6,
166
175
protoIP6ZONE,
167
176
protoSCTP,
177
+ protoCIRCUIT,
168
178
protoONION2,
169
179
protoONION3,
170
180
protoGARLIC64,
0 commit comments