diff options
author | dscho <dscho> | 2003-02-09 15:04:00 +0000 |
---|---|---|
committer | dscho <dscho> | 2003-02-09 15:04:00 +0000 |
commit | 5030d53ff08665d27e388244aa22b272716240bc (patch) | |
tree | 64aa4ced924efed1e8c66579fce4e93ef97499d6 /auth.c | |
parent | f86f9cec24a85bff17b4635f09c00513a2c356c3 (diff) | |
download | libtdevnc-5030d53ff08665d27e388244aa22b272716240bc.tar.gz libtdevnc-5030d53ff08665d27e388244aa22b272716240bc.zip |
converted CARD{8,16,32} to uint{8,16,32}_t and included support for stdint.h
Diffstat (limited to 'auth.c')
-rw-r--r-- | auth.c | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -26,8 +26,6 @@ * USA. */ -#include <stdio.h> -#include <stdlib.h> #include "rfb.h" /* @@ -46,12 +44,12 @@ rfbAuthNewClient(cl) cl->state = RFB_AUTHENTICATION; if (cl->screen->rfbAuthPasswdData && !cl->reverseConnection) { - *(CARD32 *)buf = Swap32IfLE(rfbVncAuth); + *(uint32_t *)buf = Swap32IfLE(rfbVncAuth); vncRandomBytes(cl->authChallenge); memcpy(&buf[4], (char *)cl->authChallenge, CHALLENGESIZE); len = 4 + CHALLENGESIZE; } else { - *(CARD32 *)buf = Swap32IfLE(rfbNoAuth); + *(uint32_t *)buf = Swap32IfLE(rfbNoAuth); len = 4; cl->state = RFB_INITIALISATION; } @@ -74,8 +72,8 @@ rfbAuthProcessClientMessage(cl) rfbClientPtr cl; { int n; - CARD8 response[CHALLENGESIZE]; - CARD32 authResult; + uint8_t response[CHALLENGESIZE]; + uint32_t authResult; if ((n = ReadExact(cl, (char *)response, CHALLENGESIZE)) <= 0) { if (n != 0) |