Chapter 3 V7.01 Accessible
Chapter 3 V7.01 Accessible
Approach
Seventh Edition
Chapter 3
Transport Layer
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Transport Layer
our goals:
• understand principles behind transport layer services:
– multiplexing, demultiplexing
– reliable data transfer
– flow control
– congestion control
• learn about Internet transport layer protocols:
– UDP: connectionless transport
– TCP: connection-oriented reliable transport
– TCP congestion control
Learning Objectives (1 of 10)
3.1 transport-layer services
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Transport vs. Network Layer
• network layer: logical communication between hosts
household analogy:
• hosts = houses
• processes = kids
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Internet Transport-Layer Protocols
• reliable, in-order delivery (TCP)
– congestion control
– flow control
– connection setup
• unreliable, unordered delivery: UDP
– no-frills extension of “best-
effort” IP
• services not available:
– delay guarantees
– bandwidth guarantees
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Learning Objectives (2 of 10)
3.1 transport-layer services
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Multiplexing/Demultiplexing
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
How Demultiplexing Works
• host receives IP datagrams
– each datagram has source IP
address, destination IP
address
– each datagram carries one
transport-layer segment
– each segment has source,
destination port number
• host uses IP addresses & port
numbers to direct segment to
appropriate socket
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Connectionless Demultiplexing
• recall: created socket has host- • recall: when creating datagram to
local port #: send into UDP socket, must
specify
– destination IP address
– destination port #
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Connectionless Demux: Example
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Connection-Oriented Demux
• TCP socket identified by 4-tuple:
– source IP address
– source port number
– dest IP address
– dest port number
• demux: receiver uses all four values to direct segment to appropriate
socket
• server host may support many simultaneous TCP sockets:
– each socket identified by its own 4-tuple
• web servers have different sockets for each connecting client
– non-persistent HTTP will have different socket for each request
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Connection-Oriented Demux: Example (1 of 2)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Connection-Oriented Demux: Example (2 of 2)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Learning Objectives (3 of 10)
3.1 transport-layer services
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
UDP: User Datagram Protocol [RFC 768]
• “no frills,” “bare bones” Internet • UDP use:
transport protocol – streaming multimedia apps
• “best effort” service, UDP (loss tolerant, rate
segments may be: sensitive)
– lost – DNS
– delivered out-of-order to – SNMP
app • reliable transfer over UDP:
• connectionless: – add reliability at
– no handshaking between application layer
UDP sender, receiver – application-specific error
– each UDP segment recovery!
handled independently of
others
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
UDP: Segment Header (1 of 2)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
UDP: Segment Header (2 of 2)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
UDP Checksum
Goal: detect “errors” (example, flipped bits) in transmitted segment
sender: receiver:
• treat segment contents, • compute checksum of received
including header fields, as segment
sequence of 16-bit integers
• check if computed checksum
• checksum: addition (one’s equals checksum field value:
complement sum) of – NO - error detected
segment contents
– YES - no error detected.
• sender puts checksum But maybe errors
value into UDP checksum nonetheless? More later
field ….
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Internet Checksum: Example
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Principles of Reliable Data Transfer
• important in application, transport, link layers
– top-10 list of important networking topics!
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Reliable Data Transfer: Getting Started (2 of 2)
we’ll:
• incrementally develop sender, receiver sides of reliable data transfer
protocol (rdt)
• consider only unidirectional data transfer
– but control info will flow on both directions!
• use finite state machines (FSM) to specify sender, receiver
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
rdt1.0: Reliable Transfer over a Reliable
Channel
sender receiver
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
rdt2.0: Channel with Bit Errors (1 of 2)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
rdt2.0: Channel with Bit Errors (2 of 2)
• underlying channel may flip bits in packet
– checksum to detect bit errors
• the question: how to recover from errors:
– acknowledgements (ACKs): receiver explicitly tells sender that
pkt received OK
– negative acknowledgements (NAKs): receiver explicitly tells
sender that pkt had errors
– sender retransmits pkt on receipt of NAK
• new mechanisms in rdt2.0 (beyond rdt1.0):
– error detection
– feedback: control msgs (ACK, NAK) from receiver to sender
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
rdt2.0: FSM Specification
sender receiver
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
rdt2.0: Operation with No Errors
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
rdt2.0: Error Scenario
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
rdt2.0 Has a Fatal Flaw!
what happens if ACK / NAK handling duplicates:
corrupted?
• sender retransmits current
• sender doesn’t know what pkt if ACK / NAK corrupted
happened at receiver!
• sender adds sequence
• Can’t just retransmit: number to each pkt
possible duplicate
• receiver discards (doesn’t
deliver up) duplicate pkt
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
rdt2.1: Receiver, Handles Garbled ACK/NAKs
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
rdt2.1: Discussion
sender: receiver:
• seq # added to pkt • must check if received
packet is duplicate
• two Sequence #’s (0,1) will
suffice. Why? – state indicates whether
0 or 1 is expected pkt
• must check if received ACK/ seq #
NAK corrupted
• note: receiver can not
• twice as many states know if its last ACK/NAK
– state must “remember” received OK at sender
whether “expected” pkt
should have seq # of 0 or
1
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
rdt2.2: A NAK-free Protocol
• same functionality as rdt2.1, using ACKs only
• instead of NAK, receiver sends ACK for last pkt
received OK
– receiver must explicitly include seq # of pkt being
ACKed
• duplicate ACK at sender results in same action as NAK:
retransmit current pkt
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
rdt2.2: Sender, Receiver Fragments
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
rdt3.0: Channels with Errors and Loss
new assumption: underlying channel can also lose packets (data,
ACKs)
– checksum, Sequence #, ACKs, retransmissions will be of
help … but not enough
approach: sender waits “reasonable” amount of time for ACK
• retransmits if no ACK received in this time
• if pkt (or ACK) just delayed (not lost):
– retransmission will be duplicate, but Sequence #’s already
handles this
– receiver must specify seq # of pkt being ACKed
• requires countdown timer
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
rdt3.0 Sender
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
rdt3.0 in Action (1 of 2)
(a) no loss (b) packet loss
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
rdt3.0 in Action (2 of 2)
(c) ACK loss (d) premature timeout/ delayed ACK
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Performance of rdt3.0 (1 of 2)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Performance of rdt3.0 (2 of 2)
L
R .008
Usender 0.00027
L 30.008
RTT +
R
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
rdt3.0: Stop-and-wait Operation
L
R .008
Usender 0.00027
L 30.008
RTT +
R
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Pipelined Protocols
• pipelining: sender allows multiple, “in-flight”, yet-to-be acknowledged pkts
– range of sequence numbers must be increased
– buffering at sender and/or receiver
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Pipelining: Increased Utilization
3-packet pipelining
increases utilization by
a factor of 3!
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Pipelined Protocols: Overview
Go-back-N: Selective Repeat:
• sender can have up to N • sender can have up to N
unacked packets in pipeline unack’ed packets in pipeline
• receiver only sends • rcvr sends individual ack for
cumulative ack each packet
– doesn’t ack packet if • sender maintains timer for each
there’s a gap unacked packet
• sender has timer for oldest – when timer expires,
unacked packet retransmit only that unacked
– when timer expires, packet
retransmit all unacked
packets
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Go-Back-N: Sender
• k-bit seq # in pkt header
• “window” of up to N, consecutive unack’ed pkts allowed
• ACK (n): ACKs all pkts up to, including seq # n – “cumulative ACK”
– may receive duplicate ACKs (see receiver)
• timer for oldest in-flight pkt
• timeout(n): retransmit packet n and all higher seq # pkts in window
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
GBN: Sender Extended FSM
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
GBN: Receiver Extended FSM (1 of 2)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
GBN: Receiver Extended FSM (2 of 2)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
GBN in Action
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Selective Repeat (1 of 3)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Selective Repeat: Sender, Receiver
Windows
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Selective Repeat (2 of 3)
sender
data from above:
• if next available seq # in window, send pkt
timeout(n):
• resend pkt n, restart timer
ACK(n) in [sendbase,sendbase+N]:
• mark pkt n as received
• if n smallest unACKed pkt, advance window base to next
unACKed seq #
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Selective Repeat (3 of 3)
receiver
pkt n in [rcvbase, rcvbase+N-1]
• send ACK(n)
• out-of-order: buffer
• in-order: deliver (also deliver buffered, in-order pkts), advance
window to next not-yet-received pkt
pkt n in [rcvbase-N,rcvbase-1]
• ACK(n)
otherwise:
• ignore
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Selective Repeat in Action
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Selective Repeat: Dilemma (1 of 2)
• example: (a) no problem
• seq #’s: 0, 1, 2, 3
• window size=3
receiver can’t see sender side. receiver behavior identical in both cases!
something’s (very) wrong!
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Selective Repeat: Dilemma (2 of 2)
Q: what relationship between seq # size and window size to avoid problem in
(b)?
(b) oops!
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Learning Objectives (5 of 10)
3.1 transport-layer services
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP: Overview RFCs: 793, 1122, 1323, 2018,
2581
• point-to-point: – MSS: maximum segment
– one sender, one receiver size
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP Segment Structure
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP Sequence Numbers, ACKs (1 of 2)
sequence numbers:
– byte stream “number” of
first byte in segment’s
data
acknowledgements:
– seq # of next byte
expected from other side
– cumulative ACK
Q: how receiver handles out-of-
order segments
– A: TCP spec doesn’t say,
- up to implementor
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP Sequence Numbers, ACKs (2 of 2)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP Round Trip Time, Timeout (1 of 3)
Q: how to set TCP timeout Q: how to estimate RTT?
value?
• SampleRTT: measured time
• longer than RTT from segment transmission
– but RTT varies until ACK receipt
– ignore retransmissions
• too short: premature
timeout, unnecessary • SampleRTT will vary, want
retransmissions estimated RTT “smoother”
• too long: slow reaction to – average several recent
segment loss measurements, not just
current SampleRTT
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP Round Trip Time, Timeout (2 of 3)
EstimatedRTT = (1-α)*EstimatedRTT + α *SampleRTT
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP Round Trip Time, Timeout (3 of 3)
• timeout interval: EstimatedRTT plus “safety margin”
– large variation in EstimatedRTT larger safety margin.
• estimate SampleRTT deviation from EstimatedRTT:
DevRTT = (1-β)* DevRTT +
β* SampleRTT - EstimatedRTT
(typically,β = 0.25)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Learning Objectives (6 of 10)
3.1 transport-layer services
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP Reliable Data Transfer
• TCP creates rdt service on top of IP’s unreliable service
– pipelined segments
– cumulative acks
– single retransmission timer
• retransmissions triggered by:
– timeout events
– duplicate acks
• let’s initially consider simplified TCP sender:
– ignore duplicate acks
– ignore flow control, congestion control
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP Sender Events:
data rcvd from app: timeout:
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP Sender (Simplified)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP: Retransmission Scenarios (1 of 2)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP: Retransmission Scenarios (2 of 2)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP ACK Generation [RFC 1122, RFC 2581]
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP Fast Retransmit (1 of 2)
• time-out period often relatively long:
– long delay before resending lost packet
• detect lost segments via duplicate ACKs.
– sender often sends many segments back-to-back
– if segment is lost, there will likely be many duplicate ACKs.
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP Fast Retransmit (2 of 2)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Learning Objectives (7 of 10)
3.1 transport-layer services
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP Flow Control (1 of 2)
flow control
receiver controls
sender, so sender
won’t overflow
receiver’s buffer by
transmitting too
much, too fast
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP Flow Control (2 of 2)
• receiver “advertises” free buffer space
by including rwnd value in TCP
header of receiver-to-sender
segments
– RcvBuffer size set via socket
options (typical default is 4096
bytes)
– many operating systems
autoadjust RcvBuffer
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Learning Objectives (8 of 10)
3.1 transport-layer services
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Connection Management
before exchanging data, sender/receiver “handshake”:
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Agreeing to Establish a Connection (1 of 2)
2-way handshake:
Q: will 2-way handshake
always work in network?
• variable delays
• retransmitted messages
(example. req_conn(x)) due
to message loss
• message reordering
• can’t “see” other side
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Agreeing to Establish a Connection (2 of 2)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP3-Way Handshake
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP3-Way Handshake: FSM
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP: Closing a Connection (1 of 2)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP: Closing a Connection (2 of 2)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Learning Objectives (9 of 10)
3.1 transport-layer services
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Principles of Congestion Control
congestion:
• informally: “too many sources sending too much data too
fast for network to handle”
• different from flow control!
• manifestations:
– lost packets (buffer overflow at routers)
– long delays (queueing in router buffers)
• a top-10 problem!
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Causes/Costs of Congestion: Scenario 1 (1 of 2)
• two senders, two receivers
• no retransmission
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Causes/Costs of Congestion: Scenario 1 (2 of 2)
R
• maximum per-connection throughput:
2
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Causes/Costs of Congestion: Scenario 2 (1 of 6)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Causes/Costs of Congestion: Scenario 2 (2 of 6)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Causes/Costs of Congestion: Scenario 2 (3 of 6)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Causes/Costs of Congestion: Scenario 2 (4 of 6)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Causes/Costs of Congestion: Scenario 2 (5 of 6)
Realistic: duplicates
• packets can be lost, dropped at router due to full buffers
• sender times out prematurely, sending two copies, both
of which are delivered
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Causes/Costs of Congestion: Scenario 2 (6 of 6)
“costs” of congestion:
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Causes/Costs of Congestion: Scenario 3 (1 of 2)
• four senders Q: what happens as λin and λin ' increase ?
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Causes/Costs of Congestion: Scenario 3 (2 of 2)
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Learning Objectives (10 of 10)
3.1 transport-layer services
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP Congestion Control: Additive
Increase Multiplicative Decrease
• approach: sender increases transmission rate (window size),
probing for usable bandwidth, until loss occurs
– additive increase: increase cwnd by 1 MSS every RTT until
loss detected
– multiplicative decrease: cut cwnd in half after loss
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP Congestion Control: Details
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP Slow Start
• when connection begins,
increase rate exponentially
until first loss event:
– initially cwnd = 1 MSS
– double cwnd every RTT
– done by incrementing
cwnd for every ACK
received
• summary: initial rate is slow
but ramps up exponentially
fast
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP: Detecting, Reacting to Loss
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP: Switching from Slow Start to CA
Implementation:
• variable ssthresh
1
• on loss event, ssthresh is set to of cwnd just before loss event
2
* Check out the online interactive exercises for more examples:
http://gaia.cs.umass.edu/kurose_ross/interactive/
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Summary: TCP Congestion Control
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP Throughput
• average TCP thruput as function of window size, RTT?
– ignore slow start, assume always data to send
3 W
avg TCP thruput = bytes / sec
4 RTT
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
TCP Futures: TCP over “Long, Fat Pipes”
• example: 1500 byte segments, 100ms RTT, want 10 Gbps
throughput
• requires W = 83,333 in-flight segments
• throughput in terms of segment loss probability, L [Mathis
1997]:
1.22 MSS
TCP throughput
RTT L
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Why is TCP Fair?
two competing sessions:
• additive increase gives slope of 1, as throughout increases
• multiplicative decrease decreases throughput proportionally
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Fairness (More)
Fairness and UDP Fairness, parallel TCP connections
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Explicit Congestion Notification (ECN)
network-assisted congestion control:
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Chapter Summary
• principles behind transport next:
layer services:
• leaving the network “edge”
– multiplexing, (application, transport
demultiplexing layers)
– reliable data transfer
• into the network “core”
– flow control
– congestion control • two network layer chapters:
– data plane
• instantiation, implementation
in the Internet – control plane
– UDP
– TCP
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved
Copyright
Copyright © 2017, 2013, 2010 Pearson Education, Inc. All Rights Reserved