mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 02:56:31 +02:00
43 lines
1.4 KiB
C++
43 lines
1.4 KiB
C++
//
|
|
// NetworkPacket.h
|
|
// libraries/networking/src
|
|
//
|
|
// Created by Brad Hefta-Gaub on 8/9/13.
|
|
// Copyright 2013 High Fidelity, Inc.
|
|
//
|
|
// A really simple class that stores a network packet between being received and being processed
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_NetworkPacket_h
|
|
#define hifi_NetworkPacket_h
|
|
|
|
#include "NodeList.h"
|
|
|
|
/// Storage of not-yet processed inbound, or not yet sent outbound generic UDP network packet
|
|
class NetworkPacket {
|
|
public:
|
|
NetworkPacket() { }
|
|
NetworkPacket(const NetworkPacket& packet); // copy constructor
|
|
NetworkPacket& operator= (const NetworkPacket& other); // copy assignment
|
|
|
|
#ifdef HAS_MOVE_SEMANTICS
|
|
NetworkPacket(NetworkPacket&& packet); // move?? // same as copy, but other packet won't be used further
|
|
NetworkPacket& operator= (NetworkPacket&& other); // move assignment
|
|
#endif
|
|
|
|
NetworkPacket(const SharedNodePointer& node, const QByteArray& byteArray);
|
|
|
|
const SharedNodePointer& getNode() const { return _node; }
|
|
const QByteArray& getByteArray() const { return _byteArray; }
|
|
|
|
private:
|
|
void copyContents(const SharedNodePointer& node, const QByteArray& byteArray);
|
|
|
|
SharedNodePointer _node;
|
|
QByteArray _byteArray;
|
|
};
|
|
|
|
#endif // hifi_NetworkPacket_h
|