Corrections to Chapter 14 of Java Network Programming, 3rd Edition, Multicast Sockets
p. 491: In example 14-2, the for
loop should run from 1 to 10, not 1 to 9. That is, change
for (int i = 1; i < 10; i++) {
to
for (int i = 1; i <= 10; i++) {
Copyright 2004-2006 Elliotte Rusty Harold
elharo@metalab.unc.edu
Last Modified June 6, 2006