ostinato/common/llc.ui
Srivats P. 2ec7fb30c2 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 06:27:17 +00:00

109 lines
2.6 KiB
XML

<ui version="4.0" >
<class>llc</class>
<widget class="QWidget" name="llc" >
<property name="geometry" >
<rect>
<x>0</x>
<y>0</y>
<width>304</width>
<height>72</height>
</rect>
</property>
<property name="sizePolicy" >
<sizepolicy vsizetype="Preferred" hsizetype="Preferred" >
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="windowTitle" >
<string>Form</string>
</property>
<layout class="QHBoxLayout" >
<item>
<widget class="QGroupBox" name="groupBox" >
<property name="title" >
<string>LLC</string>
</property>
<layout class="QHBoxLayout" >
<item>
<widget class="QLabel" name="lblDsap" >
<property name="text" >
<string>DSAP</string>
</property>
<property name="buddy" >
<cstring>leDsap</cstring>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="leDsap" >
<property name="enabled" >
<bool>false</bool>
</property>
<property name="inputMask" >
<string>>HH; </string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="lblSsap" >
<property name="text" >
<string>SSAP</string>
</property>
<property name="buddy" >
<cstring>leSsap</cstring>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="leSsap" >
<property name="enabled" >
<bool>false</bool>
</property>
<property name="inputMask" >
<string>>HH; </string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="lblControl" >
<property name="text" >
<string>Control</string>
</property>
<property name="buddy" >
<cstring>leControl</cstring>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="leControl" >
<property name="enabled" >
<bool>false</bool>
</property>
<property name="inputMask" >
<string>>HH; </string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<spacer>
<property name="orientation" >
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" >
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
<resources/>
<connections/>
</ui>