Add: RawPacket record to store raw data about the incomming request

This commit is contained in:
Lars Simon Winzer
2026-03-15 14:49:39 +01:00
parent 61f0a23bfa
commit 1bfbb5c75d
@@ -0,0 +1,4 @@
package ch.unibas.dmi.dbis.cs108.casono.server.network.transport;
/** Transport object, created by the transport layer to store raw data about the request prior to any processing */
public record RawPacket(int requestId, String payload) {}