aboutsummaryrefslogtreecommitdiffstats
path: root/ncpd/packet.h
diff options
context:
space:
mode:
Diffstat (limited to 'ncpd/packet.h')
-rw-r--r--ncpd/packet.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/ncpd/packet.h b/ncpd/packet.h
index aa0b90c..dcf01cc 100644
--- a/ncpd/packet.h
+++ b/ncpd/packet.h
@@ -57,6 +57,7 @@ public:
void setEpoc(bool);
void setVerbose(short int);
short int getVerbose();
+ int getSpeed();
bool linkFailed();
void reset();
@@ -71,6 +72,7 @@ private:
void opByte(unsigned char a);
void opCByte(unsigned char a, unsigned short *crc);
void realWrite();
+ void internalReset();
Link *theLINK;
pthread_t datapump;
@@ -98,10 +100,14 @@ private:
int foundSync;
int fd;
int serialStatus;
+ int baud_index;
+ int realBaud;
short int verbose;
bool esc;
bool lastFatal;
bool isEPOC;
+ bool justStarted;
+
char *devname;
int baud;
};