I want to get raw packet data from client and I read this post:
C# Getting packet data
but I can't understand this line:
s.Bind(new IPEndPoint(IPAddress.Parse(strIP), 80));
log(System.Text.Encoding.ASCII.GetString(buffer, 0, bytes));
strIP
, is that the server ip?- what does the
log
call do?