via a QUdpSocket, I know I'll receive datas which will contain only this struct:
typedef struct myStruct
{
int nb_trame;
std::vector<bool> vBool;
} myStruct;
but when I receive new datas, I receive a QByteArray right ? So how can I use the received-struct ?