Handling router clients over socket in java
问题 So I have created a Java code to handle clients when triggered by my TP-Link WR841N. The problem is that I am getting no response at all, I have already configured my router for Port Forwarding and Port Triggering but it is not working. I am not getting any output on console. Please help me out... Main.java package com.geek; public class Main { public static void main(String[] args) { DHCP_CustomServer server = new DHCP_CustomServer(2222); server.run(); } } DHCP_CustomServer.java package com