Jump to content

How To Hide Ip From L2.ini


Recommended Posts

How to hide IP from l2.ini ?

from l2.ini only you can if use extends dll file

if (name_in->sin_port == htons(2106))
	{
		name_in->sin_port = htons(2106);
		name_in->sin_addr.S_un.S_addr = inet_addr("192.168.1.100");
	}

	if (name_in->sin_port == htons(7777))
	{
		name_in->sin_port = htons(7777);
		name_in->sin_addr.S_un.S_addr = inet_addr("192.168.1.100");
	}
Link to comment
Share on other sites

Can you give me tutorial how to extends dll file or show me example?

 

even if you hide the ip it's easy to be found.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...