You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.5 KiB
56 lines
1.5 KiB
/**
|
|
* packet.h: a data packet that has a header and data of type dyntype
|
|
* Copyright (C) 2011 Georg Hopp
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifndef __PACKET_H__
|
|
#define __PACKET_H__
|
|
|
|
#include "token/cclass.h"
|
|
#include "token/dyntype.h"
|
|
|
|
|
|
enum PACKET_CONTENT_KEYS {
|
|
PACKET_HEADER = 0,
|
|
PACKET_DATA
|
|
};
|
|
|
|
struct PACKET {
|
|
const struct CCLASS * const class;
|
|
struct DYNTYPE * content[2];
|
|
};
|
|
|
|
extern const struct CCLASS * const PACKET;
|
|
|
|
struct DYNTYPE * packet_getHeader(
|
|
struct PACKET * _this);
|
|
|
|
struct DYNTYPE * packet_getData(
|
|
struct PACKET * _this);
|
|
|
|
void packet_setHeader(
|
|
struct PACKET * _this,
|
|
struct DYNTYPE * header);
|
|
|
|
void packet_setData(
|
|
struct PACKET * _this,
|
|
struct DYNTYPE * data);
|
|
|
|
void packet_set_default_content(
|
|
struct PACKET * _this);
|
|
|
|
#endif//__PACKET_H__
|
|
|
|
// vim: set et ts=4 sw=4:
|