Skip to content
Snippets Groups Projects
Commit 1c35e422 authored by Eduardo Luis Buratti's avatar Eduardo Luis Buratti
Browse files

Merge branch 'hotfix-overflow-on-net-usage' of /home/git/repositories/minicom/datasid

parents 0c27a125 7aac90e1
No related branches found
No related tags found
No related merge requests found
......@@ -466,11 +466,11 @@ public class DataSID {
st.setTime(5, java.sql.Time.valueOf(collect_time));
st.setInt(6, down_kbits.intValue() );
st.setLong(6, down_kbits.LongValue() );
st.setInt(7, down_packages.intValue());
st.setInt(8, up_kbits.intValue());
st.setLong(8, up_kbits.LongValue());
st.setInt(9, up_packages.intValue());
......
......@@ -53,14 +53,14 @@
<xsd:complexType name="Rx">
<xsd:all>
<xsd:element name="rx-packets" type="xsd:integer" minOccurs="1" />
<xsd:element name="rx-bytes" type="xsd:integer" minOccurs="1" />
<xsd:element name="rx-bytes" type="xsd:long" minOccurs="1" />
</xsd:all>
</xsd:complexType>
<xsd:complexType name="Tx">
<xsd:all>
<xsd:element name="tx-packets" type="xsd:integer" minOccurs="1" />
<xsd:element name="tx-bytes" type="xsd:integer" minOccurs="1" />
<xsd:element name="tx-bytes" type="xsd:long" minOccurs="1" />
</xsd:all>
</xsd:complexType>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment