[Wireshark-dev] pipeline failed

2021-10-28 Thread Zoran Bošnjak
Hello wireshark developers, please advice how do I reproduce the pipeline build failure in local environment. In particular, this one: https://gitlab.com/zoranbosnjak/wireshark/-/pipelines/397393242 The following problems are reported on merge request: 1. Checking cache for Code Checks + Clang

[Wireshark-dev] a bug or a feature

2021-11-03 Thread Zoran Bošnjak
Hello wireshark developers, I would appreciate some clarification about "making preferences obsolete". As this problem reports (which is also in accordance with README.dissector) https://gitlab.com/wireshark/wireshark/-/issues/17697 ... is to make each removed preference explicitely obsolete with

[Wireshark-dev] rewrite of asterix dissector

2023-08-18 Thread Zoran Bošnjak
Dear wireshark developers, I am rewriting asterix dissector. There are some open problems on asterix, which are almost impossible to resolve in the current setting. The idea is to split the code between pure generated code (with all asterix items and other asterix related definitions), but which

[Wireshark-dev] dissecting multiple items inside one frame

2008-08-19 Thread Zoran Bošnjak
Dear wireshark developers, please advice how to dissect multiple pdus inside single udp payload. There are some examples how to reassamble fragmented payload and disselection is then seen on last frame (not sure??). But I couldn't find any example for opposite problem, how to first split payload

[Wireshark-dev] inserting row into packet list pane

2008-08-26 Thread Zoran Bošnjak
Is there any possible way to insert a (fake/generated) frame into a packet list pane? It does not have to be a frame with a number, just an entry line in a pane is enough. The reason for doing this is a fact that there might be more structured chunks inside UDP payload. I would like to have eac

[Wireshark-dev] with-lua does not compile

2008-09-02 Thread Zoran Bošnjak
Latest devel release of wireshark (svn r26107) does not compile when --with-lua option is set. $./autogen.sh $./configure --with-lua=/usr/lib $make I get this error: ... ./wslua_tvb.c:600: error: expected ‘)’ before ‘*’ token ./wslua_tvb.c:643: error: expected ‘)’ before ‘*’ token ./wslua_tvb.c:

Re: [Wireshark-dev] with-lua does not compile

2008-09-05 Thread Zoran Bošnjak
/usr/local/include LDFLAGS=/usr/local/lib) /*start*/ #include #include int main (int c, char** v) { lua_State* L = lua_newstate(realloc,NULL); } /*end*/ On Tue, Sep 2, 2008 at 9:22 AM, Zoran Bošnjak <[EMAIL PROTECTED]> wrote: > Latest devel release of wireshark (svn r26107) do