@@ -201,10 +201,10 @@ func qInterfaces() *survey.Question {
201
201
Name : "interfaces" ,
202
202
Prompt : & survey.MultiSelect {
203
203
Message : "Choose your capture interface(s):" ,
204
- Help : `The interfaces you most likely want to use for capturing start
205
- with "eth" or "en" (e.g. eth0, eno1, enp1s0, enx78e7d1ea46da). You will generally NOT
206
- want to use loopback, bridged, or virtual interfaces (e.g. lo, br-c446eb08dde, veth582437d).
207
- If you choose to select interfaces belonging to the latter category, proceed at your own risk.` ,
204
+ Help : `The interfaces you most likely want to use for capturing start
205
+ with "eth" or "en" (e.g. eth0, eno1, enp1s0, enx78e7d1ea46da). You will generally NOT
206
+ want to use loopback, bridged, or virtual interfaces (e.g. lo, br-c446eb08dde, veth582437d).
207
+ If you choose to select interfaces belonging to the latter category, proceed at your own risk.` ,
208
208
Options : displayNames ,
209
209
Default : suggestedNames ,
210
210
PageSize : 20 ,
@@ -229,8 +229,8 @@ func qProcesses() *survey.Question {
229
229
Prompt : & survey.Input {
230
230
Message : "How many total Zeek processes do you want?" ,
231
231
Help : `You will generally get the best performance by making your total number of Zeek processes
232
- one less than the number of CPU cores your system has. If your system is used for something
233
- in addition to Zeek you may want to reduce the number of processes further.` ,
232
+ one less than the number of CPU cores your system has. If your system is used for something
233
+ in addition to Zeek you may want to reduce the number of processes further.` ,
234
234
Default : strconv .Itoa (int (suggestedProcesses ())),
235
235
},
236
236
// Only numbers up to how many cores there are
@@ -250,8 +250,8 @@ func qSocketType() *survey.Question {
250
250
Name : "socketType" ,
251
251
Prompt : & survey.Select {
252
252
Message : "What type of network socket do you want to use?" ,
253
- Help : `Choosing the afpacket option here can improve performance. However, you must have
254
- the corresponding zeek plugin to use it.` ,
253
+ Help : `Choosing the afpacket option here can improve performance. However, you must have
254
+ the corresponding zeek plugin to use it.` ,
255
255
Options : []string {sockRaw , sockAfpacket },
256
256
Default : sockRaw ,
257
257
},
0 commit comments