I have some old code, which use this flags in socket:
unsigned char str_optval [8] = {0xfc, 0x08, 0xff, 0x33, 0xcc, 0xff, 0xaa, 0x0};
res=setsockopt(sid,SOL_IP,IP_OPTIONS, (char*)&str_optval,sizeof(str_optval));
How can I change this place to use QUdpSocket? I can't find any analog setsockopt in QUdpClass. QAbstractSocket provide setSocketOption, which allow only 4 variants flags (enum). I need it only in linux version, so if any native func it's ok.