I'm working on an open source where SOCK_DGRAM is used to send RTP packets.
Like this:
int sock = socket(af, SOCK_DGRAM, 0);
But i'm supposed to use the same socket as SOCK_RAW to send the UDP packets that i prepare.
Is this possible to convert the UDP socket to RAW socket?
if it is possible how it can be done?
Thanks in advance
I don't know why you said
need to use same socket
, otherwise, you can follow the below steps to transfer packet overRAW
socket.socket
usingSOCK_RAW
.struct ipheader
]struct udphdr
]setsockopt()
forIP_HDRINCL
as1
]sendto()
]You can find some nice tutorials (and maybe some sample codes, too) here.