2008-08-08 22:22:13 -05:00
|
|
|
all:
|
2009-04-27 11:51:44 -05:00
|
|
|
$(MAKE) -C rpc
|
2008-08-08 22:22:13 -05:00
|
|
|
$(MAKE) -C common
|
|
|
|
$(MAKE) -C server
|
|
|
|
$(MAKE) -C client
|
2008-08-23 23:39:08 -05:00
|
|
|
|
|
|
|
clean:
|
|
|
|
$(MAKE) -C rpc $@
|
|
|
|
$(MAKE) -C common $@
|
|
|
|
$(MAKE) -C server $@
|
|
|
|
$(MAKE) -C client $@
|
|
|
|
|
Protocol Framework basic code in place now. Cleanup pending.
- New Classes:
o ProtocolManager - singleton with which all protocols register
o ProtocolCollection - Aggregates all registered protocols; exports methods to work on all protocols
o StreamBase - aggregates ProtocolCollection with Stream Core and Control; the client/server side stream classes now derive from StreamBase leading to major reduction in their code (more cleanup pending)
- AbstractProtocol now supports the additional methods
o createInstance()
o protocolFrameSize()
o protocolFrameOffset(), protocolFramePayloadSize()
o protocolId(), payloadProtocolId()
o protocolFrameCksum(), protocolFramePayloadCksum()
0 constructor takes an extra param - frameProtoList
- Specific protocols - eth2, llc, snap, ip4, udp, tcp now return length, protocol id and cksums correctly (tcp/udp cksum pending)
- StreamConfigDialog - protocol controls for length, cksum and protocolid are automatically updated (not fully working yet)
2009-05-10 01:27:17 -05:00
|
|
|
distclean:
|
|
|
|
$(MAKE) -C rpc $@
|
|
|
|
$(MAKE) -C common $@
|
|
|
|
$(MAKE) -C server $@
|
|
|
|
$(MAKE) -C client $@
|
|
|
|
|
2008-08-23 23:39:08 -05:00
|
|
|
qmake:
|
2009-04-27 11:51:44 -05:00
|
|
|
cd rpc && qmake && cd ..
|
|
|
|
cd common && qmake && cd ..
|
|
|
|
cd server && qmake && cd ..
|
|
|
|
cd client && qmake && cd ..
|