/*
+ * Copyright (C) 2012 Tobias Brunner
* Copyright (C) 2005-2006 Martin Willi
* Copyright (C) 2005 Jan Hutter
* Hochschule fuer Technik Rapperswil
* message data
*/
chunk_t data;
+
+ /**
+ * actual chunk returned from get_data, adjusted when skip_bytes is called
+ */
+ chunk_t adjusted_data;
};
METHOD(packet_t, set_source, void,
METHOD(packet_t, get_data, chunk_t,
private_packet_t *this)
{
- return this->data;
+ return this->adjusted_data;
}
METHOD(packet_t, set_data, void,
private_packet_t *this, chunk_t data)
{
free(this->data.ptr);
- this->data = data;
+ this->adjusted_data = this->data = data;
+}
+
+METHOD(packet_t, skip_bytes, void,
+ private_packet_t *this, size_t bytes)
+{
+ this->adjusted_data = chunk_skip(this->adjusted_data, bytes);
}
METHOD(packet_t, destroy, void,
}
if (this->data.ptr != NULL)
{
- other->set_data(other, chunk_clone(this->data));
+ other->set_data(other, chunk_clone(this->adjusted_data));
}
return other;
}
.get_source = _get_source,
.set_destination = _set_destination,
.get_destination = _get_destination,
+ .skip_bytes = _skip_bytes,
.clone = _clone_,
.destroy = _destroy,
},
/*
+ * Copyright (C) 2012 Tobias Brunner
* Copyright (C) 2005-2006 Martin Willi
* Copyright (C) 2005 Jan Hutter
* Hochschule fuer Technik Rapperswil
*/
void (*set_data) (packet_t *packet, chunk_t data);
+ /**
+ * Increase the offset where the actual packet data starts.
+ *
+ * @note The offset is reset to 0 when set_data() is called.
+ *
+ * @param bytes the number of additional bytes to skip
+ */
+ void (*skip_bytes) (packet_t *packet, size_t bytes);
+
/**
* Clones a packet_t object.
*