public void sendBoundPorts()

in agent/src/main/java/com/attachme/agent/AttachmeClient.java [16:23]


  public void sendBoundPorts(List<Integer> ports, int pid) throws IOException {
    ProcessRegisterMsg msg = new ProcessRegisterMsg();
    msg.setPid(pid);
    msg.setPorts(ports);
    ObjectOutputStream stream = new ObjectOutputStream(sock.getOutputStream());
    stream.writeObject(msg);
    System.err.println("[attachme] Successfully notified attachme listener");
  }