Commit 8ce7810e26a56bc4ddca34536e0ff88103116274

Authored by Notmoo
1 parent 06bf8835

PositioningServlet : ajout ';' à la fin de la payload de la requete muulticast udp

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/main/java/servlet/PositioningServlet.java
@@ -62,7 +62,7 @@ public class PositioningServlet extends HttpServlet{ @@ -62,7 +62,7 @@ public class PositioningServlet extends HttpServlet{
62 62
63 byte[] buf = new byte[256]; 63 byte[] buf = new byte[256];
64 64
65 - String dString = "LOCATE=" + clientMacAddress + ";SERV=" + Inet4Address.getLocalHost().getHostAddress(); 65 + String dString = "LOCATE=" + clientMacAddress + ";SERV=" + Inet4Address.getLocalHost().getHostAddress()+";";
66 buf = dString.getBytes(); 66 buf = dString.getBytes();
67 67
68 // send it 68 // send it