--- a/CHANGES.html Thu Dec 16 21:00:18 2010 -0500
+++ b/CHANGES.html Fri Dec 17 12:48:13 2010 -0500
@@ -84,13 +84,13 @@
<li><b>Socket::GetSocketType ()</b>
<p>This is analogous to getsockopt(SO_TYPE). ipv4-raw-socket, ipv6-raw-socket,
- and packet-socket return SOCK_RAW. tcp-socket and nsc-tcp-socket return
- SOCK_STREAM. udp-socket returns SOCK_DGRAM.</p></li>
+ and packet-socket return NS3_SOCK_RAW. tcp-socket and nsc-tcp-socket return
+ NS3_SOCK_STREAM. udp-socket returns NS3_SOCK_DGRAM.</p></li>
<li><b>BulkSendApplication</b>
<p>Sends data as fast as possible up to MaxBytes or unlimited if MaxBytes is
zero. Think OnOff, but without the "off" and without the variable data rate.
-This application only works with SOCK_STREAM and SOCK_SEQPACKET sockets,
+This application only works with NS3_SOCK_STREAM and NS3_SOCK_SEQPACKET sockets,
for example TCP sockets and not UDP sockets. A helper class exists to
facilitate creating BulkSendApplications. The API for the helper class
is similar to existing application helper classes, for example, OnOff.