Ask Your Question

rneustad's profile - activity

2023-04-03 14:38:27 +0000 received badge  Notable Question (source)
2023-04-03 14:38:27 +0000 received badge  Popular Question (source)
2023-04-03 14:38:27 +0000 received badge  Famous Question (source)
2021-10-20 09:06:06 +0000 marked best answer proto_new there cannot be two protocols with the same name

Hi there!

I am using Wireshark Version 3.0.2 .

I created new protocol dissector and get the same error msg: proto_new there cannot be two protocols with the same name.

I tried with:

MQTTPROTO = Proto.new("mqtt_new", "MQ Telemetry Transport New")

and

MQTTPROTO = Proto("mqtt_new", "MQ Telemetry Transport New")

both options throw exception.

2021-10-20 09:06:06 +0000 received badge  Scholar (source)
2021-10-19 18:43:18 +0000 commented question proto_new there cannot be two protocols with the same name

Thank you very much! It works!!!

2021-10-19 18:15:57 +0000 commented question proto_new there cannot be two protocols with the same name

Ho! That makes sense! so I should I call this file? The line appears in another protocol which works fine! (All the head

2021-10-19 17:09:58 +0000 received badge  Commentator
2021-10-19 17:09:58 +0000 commented question proto_new there cannot be two protocols with the same name

Yes, I searched also in the global. I don't think this is the issue, because I tried several protocol names that couldn'

2021-10-19 16:47:02 +0000 commented question proto_new there cannot be two protocols with the same name

Now I got: Get-ChildItem -Path . -Recurse | Select-String -Pattern "Proto.*mqtt*" -List 20 Applications\mqtt_new.lua:4

2021-10-19 16:31:27 +0000 commented question proto_new there cannot be two protocols with the same name

@cmaynard Actually I run this cmmand from both terminals, CMD and Powershell. I got the same empty result

2021-10-19 16:29:52 +0000 commented question proto_new there cannot be two protocols with the same name

@Chuckc I made the changes you mention. Thanks but it didn't help. i still get: bad argument #1 to 'new' (Proto_new:the

2021-10-19 16:21:52 +0000 commented question proto_new there cannot be two protocols with the same name

PS C:\Users\XXXXX\AppData\Roaming\Wireshark> findstr /r /s /m "Proto.*\"mqtt_new\"" plugins*.lua F

2021-10-19 16:21:38 +0000 commented question proto_new there cannot be two protocols with the same name

PS C:\Users\XXXXX\AppData\Roaming\Wireshark> findstr /r /s /m "Proto.*\"mqtt_new\"" plugins*.lua F

2021-10-19 16:14:44 +0000 commented question proto_new there cannot be two protocols with the same name

FINDSTR: No search strings

2021-10-19 16:06:54 +0000 commented question proto_new there cannot be two protocols with the same name

-- Create a new dissector MQTTPROTO = Proto.new("mqtt_new", "New implementation for MQTT protocol!") -- Fi

2021-10-19 15:56:44 +0000 commented question proto_new there cannot be two protocols with the same name

-- Create a new dissector MQTTPROTO = Proto.new("mqtt_new", "New implementation for MQTT protocol!")

2021-10-19 15:56:16 +0000 commented question proto_new there cannot be two protocols with the same name

-- Create a new dissector MQTTPROTO = Proto.new("mqtt_new", "New implementation for MQTT protocol!") --

2021-10-19 15:55:49 +0000 commented question proto_new there cannot be two protocols with the same name

-- Create a new dissector MQTTPROTO = Proto.new("mqtt_new", "New implementation for MQTT protocol!") -- Fix

2021-10-19 15:49:51 +0000 commented question proto_new there cannot be two protocols with the same name

-- Create a new dissector MQTTPROTO = Proto.new("mqtt_new", "New implementation for MQTT protocol!") -- Fix header:

2021-10-19 15:48:39 +0000 commented question proto_new there cannot be two protocols with the same name

-- Create a new dissector MQTTPROTO = Proto.new("mqtt_new", "New implementation for MQTT protocol!") -- Fix header:

2021-10-19 14:56:29 +0000 commented question proto_new there cannot be two protocols with the same name

@hugo.vanderkooij I don't understand what do you mean by "add a dissector to an old version". What do you mean? I wan

2021-10-19 14:56:12 +0000 commented question proto_new there cannot be two protocols with the same name

@hugo.vanderkooij I don't understand what do you mean by "add a dissector to an old version". What do you mean? I wan

2021-10-19 14:55:56 +0000 commented question proto_new there cannot be two protocols with the same name

@hugo.vanderkooij I don't understand what do you mean by "add a dissector to an old version". What do you mean? I wan

2021-10-19 14:49:44 +0000 commented question proto_new there cannot be two protocols with the same name

@cmaynard I have a single file with this name. Maybe Wireshark use cheche somewhere? I reopen the app but no success

2021-10-19 14:49:20 +0000 commented question proto_new there cannot be two protocols with the same name

@hugo.vanderkooij I don't understand what do you mean by "add a dissector to an old version". What do you mean? I wan

2021-10-19 14:47:23 +0000 commented question proto_new there cannot be two protocols with the same name

I have a single file with this name. Maybe Wireshark use cheche somewhere? I reopen the app but no success

2021-10-19 14:20:42 +0000 commented answer Wireshark 2.6 throws error when loading LUA dissector

How do you avoid the double loading?

2021-10-19 12:53:12 +0000 asked a question proto_new there cannot be two protocols with the same name

proto_new there cannot be two protocols with the same name Hi there! I am using Wireshark Version 3.0.2 . I created ne