mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2026-07-18 00:45:51 +00:00
VNC-151 Replace NULL and 0 with nullptr
This commit is contained in:
parent
485b2390ff
commit
dbaac097e4
1 changed files with 11 additions and 11 deletions
|
|
@ -656,8 +656,8 @@ void VNCSConnectionST::approveConnectionOrClose(bool accept,
|
|||
|
||||
void VNCSConnectionST::authSuccess()
|
||||
{
|
||||
lastEventTime = time(0);
|
||||
connectionTime = time(0); // Record when the user connected
|
||||
lastEventTime = time(nullptr);
|
||||
connectionTime = time(nullptr); // Record when the user connected
|
||||
vlog.info("User %s connected at %ld", clientUsername.c_str(), connectionTime);
|
||||
|
||||
server->startDesktop();
|
||||
|
|
@ -733,7 +733,7 @@ void VNCSConnectionST::queryConnection(const char* userName)
|
|||
|
||||
void VNCSConnectionST::clientInit(bool shared)
|
||||
{
|
||||
lastEventTime = time(0);
|
||||
lastEventTime = time(nullptr);
|
||||
if (rfb::Server::alwaysShared || reverseConnection) shared = true;
|
||||
if (!(accessRights & AccessNonShared)) shared = true;
|
||||
if (rfb::Server::neverShared) shared = false;
|
||||
|
|
@ -774,7 +774,7 @@ void VNCSConnectionST::setPixelFormat(const PixelFormat& pf)
|
|||
|
||||
void VNCSConnectionST::pointerEvent(const Point& pos, const Point& abspos, int buttonMask, const bool skipClick, const bool skipRelease, int scrollX, int scrollY)
|
||||
{
|
||||
pointerEventTime = lastEventTime = time(0);
|
||||
pointerEventTime = lastEventTime = time(nullptr);
|
||||
server->lastUserInputTime = lastEventTime;
|
||||
if (!(accessRights & AccessPtrEvents)) {
|
||||
// This particular event is lost, but it's a corner case - you removed write access
|
||||
|
|
@ -827,7 +827,7 @@ void VNCSConnectionST::pointerEvent(const Point& pos, const Point& abspos, int b
|
|||
if (buttonMask)
|
||||
server->pointerClient = this;
|
||||
else
|
||||
server->pointerClient = 0;
|
||||
server->pointerClient = nullptr;
|
||||
|
||||
bool skipclick = false, skiprelease = false;
|
||||
if (server->DLPRegion.enabled) {
|
||||
|
|
@ -877,7 +877,7 @@ void VNCSConnectionST::keyEvent(rdr::U32 keysym, rdr::U32 keycode, bool down) {
|
|||
return;
|
||||
}
|
||||
|
||||
lastEventTime = time(0);
|
||||
lastEventTime = time(nullptr);
|
||||
server->lastUserInputTime = lastEventTime;
|
||||
if (!(accessRights & AccessKeyEvents)) return;
|
||||
if (!rfb::Server::acceptKeyEvents) return;
|
||||
|
|
@ -889,7 +889,7 @@ void VNCSConnectionST::keyEvent(rdr::U32 keysym, rdr::U32 keycode, bool down) {
|
|||
return;
|
||||
}
|
||||
|
||||
gettimeofday(&lastKeyEvent, NULL);
|
||||
gettimeofday(&lastKeyEvent, nullptr);
|
||||
|
||||
if (down) {
|
||||
keylog(keysym, sock->getPeerAddress());
|
||||
|
|
@ -1101,7 +1101,7 @@ void VNCSConnectionST::fence(rdr::U32 flags, unsigned len, const char data[])
|
|||
fenceFlags = flags & (fenceFlagBlockBefore | fenceFlagBlockAfter | fenceFlagSyncNext);
|
||||
fenceDataLen = len;
|
||||
delete [] fenceData;
|
||||
fenceData = NULL;
|
||||
fenceData = nullptr;
|
||||
if (len > 0) {
|
||||
fenceData = new char[len];
|
||||
memcpy(fenceData, data, len);
|
||||
|
|
@ -1320,7 +1320,7 @@ bool VNCSConnectionST::isCongested()
|
|||
|
||||
if (eta > 1000 / rfb::Server::frameRate) {
|
||||
struct timeval now;
|
||||
gettimeofday(&now, NULL);
|
||||
gettimeofday(&now, nullptr);
|
||||
|
||||
bstats[BS_NET_SLOW].push_back(now);
|
||||
bstats_total[BS_NET_SLOW]++;
|
||||
|
|
@ -1411,7 +1411,7 @@ void VNCSConnectionST::writeFramebufferUpdate()
|
|||
congestion.updatePosition(sock->outStream().length());
|
||||
|
||||
struct timeval now;
|
||||
gettimeofday(&now, NULL);
|
||||
gettimeofday(&now, nullptr);
|
||||
bstats[BS_FRAME].push_back(now);
|
||||
bstats_total[BS_FRAME]++;
|
||||
}
|
||||
|
|
@ -1657,7 +1657,7 @@ void VNCSConnectionST::sendStats(const bool toClient) {
|
|||
struct timeval now;
|
||||
|
||||
// Prune too old stats from the recent lists
|
||||
gettimeofday(&now, NULL);
|
||||
gettimeofday(&now, nullptr);
|
||||
|
||||
pruneStatList(bstats[BS_CPU_CLOSE], now);
|
||||
pruneStatList(bstats[BS_CPU_SLOW], now);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue