From ab4e689bc91683b4e4a3110d3850b3aad6fd4faa Mon Sep 17 00:00:00 2001 From: Gary Russell Date: Thu, 11 Mar 2010 23:12:09 +0000 Subject: [PATCH] Minor typos in IP Chapter --- spring-integration-reference/src/ip.xml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/spring-integration-reference/src/ip.xml b/spring-integration-reference/src/ip.xml index af5287cf0e..eb0579763b 100644 --- a/spring-integration-reference/src/ip.xml +++ b/spring-integration-reference/src/ip.xml @@ -140,7 +140,7 @@ TCP is a streaming protocol; this means that some structure has to be provided to data - transported over TCP, so the receiver can delimit the data into discrete messages. + transported over TCP, so the receiver can demarcate the data into discrete messages. Three standard message formats are provided for this purpose; you can also provide code for your own custom format. The first of the three standard formats is length-header, in which case a 4 byte length header precedes the data; this is the default. The second is stx-etx in which the message @@ -243,7 +243,7 @@ N Y true, false - Whether or not a udp adapter requires an acknowledment from the destination. + Whether or not a udp adapter requires an acknowledgment from the destination. when enabled, requires setting the following 4 attributes. @@ -253,7 +253,7 @@ When acknowledge is true, indicates the host or ip address to which the acknowledgment should be sent. Usually the current host, but may be - different, for example when Netword Address Transation (NAT) is + different, for example when Network Address Transation (NAT) is being used. @@ -314,7 +314,8 @@ N true, false When using NIO, whether or not the tcp adapter uses direct buffers. - Refer to java.nio.ByteBuffer documentation for more information. + Refer to java.nio.ByteBuffer documentation for + more information. message-format @@ -323,13 +324,13 @@ length-header, stx-etx, crlf, custom The formatting that the tcp adapter uses so the receiver can demarcate messages. Defaults to length-header. - See the discussion above for details on each format. + See the discussion above for details about each format. custom-socket- writer-class-name Y N - Subclass of TcpNetSocketWriter or TcpNioSocketWriter + Subclass of TcpNetSocket- Writer or TcpNioSocket- Writer When message-format is 'custom' the name of the class that implements the custom format. Must be a subclass of the TcpNxxSocketWriter, depending on whether using-nio is false or true. @@ -490,13 +491,13 @@ length-header, stx-etx, crlf, custom The formatting that the tcp adapter uses so the adapter can demarcate messages. Defaults to length-header. - See the discussion above for details on each format. + See the discussion above for details about each format. custom-socket- reader-class-name Y N - Subclass of TcpNetSocketReader or TcpNioSocketReader + Subclass of TcpNetSocket- Reader or TcpNioSocket- Reader When message-format is 'custom' the name of the class that implements the custom format. Must be a subclass of the TcpNxxSocketReader, depending on whether using-nio is false or true. @@ -523,7 +524,7 @@ Y See java.net.Socket and java.net.DatagramSocket - setReceiveBufferSize() methods for more information. + setReceiveBufferSize() for more information. so-keep-alive