author | dwmw2 <dwmw2> | 2002-05-09 17:31:30 (UTC) |
---|---|---|
committer | dwmw2 <dwmw2> | 2002-05-09 17:31:30 (UTC) |
commit | e7b6e8c14e2c7ed7fe440d018a28ea1b5d3020e5 (patch) (side-by-side diff) | |
tree | 90c3988928839cea18249e159f0a6d04547935fb | |
parent | 37b512ee81aacdc53c4cf5de18a2eb7c0819086d (diff) | |
download | opie-e7b6e8c14e2c7ed7fe440d018a28ea1b5d3020e5.zip opie-e7b6e8c14e2c7ed7fe440d018a28ea1b5d3020e5.tar.gz opie-e7b6e8c14e2c7ed7fe440d018a28ea1b5d3020e5.tar.bz2 |
qregexp.h
-rw-r--r-- | noncore/comm/keypebble/krfblogin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/noncore/comm/keypebble/krfblogin.cpp b/noncore/comm/keypebble/krfblogin.cpp index 073ba0e..cc3a8fa 100644 --- a/noncore/comm/keypebble/krfblogin.cpp +++ b/noncore/comm/keypebble/krfblogin.cpp @@ -1,34 +1,35 @@ #include <assert.h> extern "C" { #include "vncauth.h" } #include "krfblogin.h" #include "krfbconnection.h" #include <qtimer.h> +#include <qregexp.h> // The length of the various messages (used to decide how many bytes to // wait for). const int ServerVersionLength = 12; const int ClientVersionLength = 12; const int AuthSchemeLength = 4; const int FailureReasonSizeLength = 4; const int ChallengeLength = 16; const int AuthResultLength = 4; // Authentication results enum AuthResult { AuthOk, AuthFailed, AuthTooMany }; typedef unsigned char CARD8; typedef unsigned short CARD16; typedef unsigned long CARD32; const int endianTest = 1; // Endian stuff |