84c7fe1e06
- Added support for retrieving the packet capture buffer from server to client (does not work consistently however - needs investigation) - getCaptureBuffer() Rpc signature changed - RPC: Added support in Rpc Channel (client) to queue calls - RPC: Added support for transferring arbitrary binary data from server to client (used to get packet capture files) - Rpc header changed - length is now 4 bytes instead of 2; there is no rsvd field any longer Fixes - RPC: Fix for the case when a msg is not received all at once over the socket - StreamConfigDialog: fixed display issue in packet view for combo protocols containing meta fields - Fixed issue with Stacked Vlan not retaining data for both CVlan and SVlan - Fixed incorrect payload size issue with increment/decrement frame length modes Refactoring, Cleanup etc. - RPC: Minor code and TODOs cleanup - Server: Minor code and TODOs cleanup - Server: Removed unused file(s): rxtx.cpp, rxtx.h - Server: Replaced direct use of ProtocolList with the ProtocolListIterator - Common: Minor code and TODOs cleanup - StreamBase::frameLen() now returns the length based on the mode/min/max and the passed in streamIndex - AbstractProtocol interface changed for methods - protocolFrameSize(), protocolFrameOffset(), protocolFramePayloadSize() : all of them now take streamIndex as an optional param with 0 as the default value - Protocols implementing the above methods changed accordingly
86 lines
1.5 KiB
Prolog
86 lines
1.5 KiB
Prolog
TEMPLATE = lib
|
|
CONFIG += qt staticlib
|
|
QT += network
|
|
LIBS += \
|
|
-lprotobuf
|
|
FORMS += \
|
|
mac.ui \
|
|
payload.ui \
|
|
eth2.ui \
|
|
dot3.ui \
|
|
llc.ui \
|
|
snap.ui \
|
|
vlan.ui \
|
|
ip4.ui \
|
|
tcp.ui \
|
|
udp.ui
|
|
PROTOS += \
|
|
protocol.proto \
|
|
mac.proto \
|
|
payload.proto \
|
|
eth2.proto \
|
|
dot3.proto \
|
|
llc.proto \
|
|
snap.proto \
|
|
dot2llc.proto \
|
|
dot2snap.proto \
|
|
vlan.proto \
|
|
svlan.proto \
|
|
vlanstack.proto \
|
|
ip4.proto \
|
|
tcp.proto \
|
|
udp.proto
|
|
HEADERS += \
|
|
abstractprotocol.h \
|
|
comboprotocol.h \
|
|
protocolmanager.h \
|
|
protocollist.h \
|
|
protocollistiterator.h \
|
|
streambase.h \
|
|
mac.h \
|
|
payload.h \
|
|
eth2.h \
|
|
dot3.h \
|
|
llc.h \
|
|
snap.h \
|
|
dot2llc.h \
|
|
dot2snap.h \
|
|
vlan.h \
|
|
svlan.h \
|
|
vlanstack.h \
|
|
ip4.h \
|
|
tcp.h \
|
|
udp.h
|
|
SOURCES += \
|
|
abstractprotocol.cpp \
|
|
protocolmanager.cpp \
|
|
protocollist.cpp \
|
|
protocollistiterator.cpp \
|
|
streambase.cpp \
|
|
mac.cpp \
|
|
payload.cpp \
|
|
eth2.cpp \
|
|
dot3.cpp \
|
|
llc.cpp \
|
|
snap.cpp \
|
|
vlan.cpp \
|
|
svlan.cpp \
|
|
ip4.cpp \
|
|
tcp.cpp \
|
|
udp.cpp
|
|
|
|
protobuf_decl.name = protobuf header
|
|
protobuf_decl.input = PROTOS
|
|
protobuf_decl.output = ${QMAKE_FILE_BASE}.pb.h
|
|
protobuf_decl.commands = protoc --cpp_out="." ${QMAKE_FILE_NAME}
|
|
protobuf_decl.variable_out = GENERATED_FILES
|
|
QMAKE_EXTRA_COMPILERS += protobuf_decl
|
|
|
|
protobuf_impl.name = protobuf implementation
|
|
protobuf_impl.input = PROTOS
|
|
protobuf_impl.output = ${QMAKE_FILE_BASE}.pb.cc
|
|
protobuf_impl.depends = ${QMAKE_FILE_BASE}.pb.h
|
|
protobuf_impl.commands = $$escape_expand(\n)
|
|
protobuf_impl.variable_out = GENERATED_SOURCES
|
|
QMAKE_EXTRA_COMPILERS += protobuf_impl
|