I am using sfml for my project and i want to ask what is the difference in size between sending bitstream(char *data, sizeof(data) and sending packet with data?
Because sizeof(sf::Packet) returns 32 B to and that seems to much to me.
Does this mean that if i make my own bitstream representation of packet (char *mypacket = "00011100 ...etc" (eg first 4 bites represents size of head etc..)) and it will be smaller than 32bytes is it than smaller then packet or does Send function wraps some other data on it?