//hack
delegate.setUsername("guest");
delegate.setPassword("guest");
IoAcceptor ioa = new IoAcceptor
("0.0.0.0", 5672, new ConnectionBinding(delegate));
System.out.println
(String.format
(FORMAT_HDR, "Session", "Count/MBytes", "Cumulative Rate", "Interval Rate"));
System.out.println
(String.format
(FORMAT_HDR, "-------", "------------", "---------------", "-------------"));
ioa.start();
}