Skip to content

Commit

Permalink
added seqserial (SS)
Browse files Browse the repository at this point in the history
  • Loading branch information
subpardaemon committed Mar 19, 2018
1 parent 1a72268 commit 38f9cce
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
/**
* TODO
* swatk6/packet
* @version v1.1.1
* @author Andras Kemeny
*
* A packet class for layer-agnostic communications.
*
* LICENSE: MIT
* (c) Andras Kemeny, subpardaemon@gmail.com
Expand Down Expand Up @@ -28,6 +32,7 @@ function swatk6_packet(inData) {
};
this.sessionid = null;
this.seqid = null;
this.seqserial = 0;
this.states = [];
this._commdata = {
sendstate: 'queue',
Expand Down Expand Up @@ -571,6 +576,7 @@ swatk6_packet.paramnames = {
OP: 'options',
SI: 'sessionid',
SQ: 'seqid',
SS: 'seqserial',
ST: 'status'
};
swatk6_packet.optnames = {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@swatk6/packet",
"version": "1.0.1",
"version": "1.1.1",
"description": "A packet class for layer-agnostic communications.",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 38f9cce

Please sign in to comment.