1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
|
M. Rose & D. Cass [Page 1]
^L
Network Working Group Marshall T. Rose, Dwight E. Cass
Request for Comments: RFC 1006 Northrop Research and Technology Center
Obsoletes: RFC 983 May 1987
ISO Transport Service on top of the TCP
Version: 3
Status of this Memo
This memo specifies a standard for the Internet community. Hosts
on the Internet that choose to implement ISO transport services
on top of the TCP are expected to adopt and implement this
standard. TCP port 102 is reserved for hosts which implement this
standard. Distribution of this memo is unlimited.
This memo specifies version 3 of the protocol and supersedes
[RFC983]. Changes between the protocol as described in Request for
Comments 983 and this memo are minor, but are unfortunately
incompatible.
M. Rose & D. Cass [Page 1]
^L
RFC 1006 May 1987
1. Introduction and Philosophy
The Internet community has a well-developed, mature set of
transport and internetwork protocols (TCP/IP), which are quite
successful in offering network and transport services to
end-users. The CCITT and the ISO have defined various session,
presentation, and application recommendations which have been
adopted by the international community and numerous vendors.
To the largest extent possible, it is desirable to offer these
higher level directly in the ARPA Internet, without disrupting
existing facilities. This permits users to develop expertise
with ISO and CCITT applications which previously were not
available in the ARPA Internet. It also permits a more
graceful convergence and transition strategy from
TCP/IP-based networks to ISO-based networks in the
medium-and long-term.
There are two basic approaches which can be taken when "porting"
an ISO or CCITT application to a TCP/IP environment. One
approach is to port each individual application separately,
developing local protocols on top of the TCP. Although this is
useful in the short-term (since special-purpose interfaces to the
TCP can be developed quickly), it lacks generality.
A second approach is based on the observation that both the ARPA
Internet protocol suite and the ISO protocol suite are both
layered systems (though the former uses layering from a more
pragmatic perspective). A key aspect of the layering principle
is that of layer-independence. Although this section is
redundant for most readers, a slight bit of background material
is necessary to introduce this concept.
Externally, a layer is defined by two definitions:
a service-offered definition, which describes the services
provided by the layer and the interfaces it provides to
access those services; and,
a service-required definitions, which describes the services
used by the layer and the interfaces it uses to access those
services.
Collectively, all of the entities in the network which co-operate
to provide the service are known as the service-provider.
Individually, each of these entities is known as a service-peer.
Internally, a layer is defined by one definition:
a protocol definition, which describes the rules which each
service-peer uses when communicating with other service-peers.
M. Rose & D. Cass [Page 2]
^L
RFC 1006 May 1987
Putting all this together, the service-provider uses the protocol
and services from the layer below to offer the its service to the
layer above. Protocol verification, for instance, deals with
proving that this in fact happens (and is also a fertile field
for many Ph.D. dissertations in computer science).
The concept of layer-independence quite simply is:
IF one preserves the services offered by the service-provider
THEN the service-user is completely naive with respect to the
protocol which the service-peers use
For the purposes of this memo, we will use the layer-independence
to define a Transport Service Access Point (TSAP) which appears
to be identical to the services and interfaces offered by the
ISO/CCITT TSAP (as defined in [ISO8072]), but we will in fact
implement the ISO TP0 protocol on top of TCP/IP (as defined in
[RFC793,RFC791]), not on top of the the ISO/CCITT network
protocol. Since the transport class 0 protocol is used over the
TCP/IP connection, it achieves identical functionality as
transport class 4. Hence, ISO/CCITT higher level layers (all
session, presentation, and application entities) can operate
fully without knowledge of the fact that they are running on a
TCP/IP internetwork.
M. Rose & D. Cass [Page 3]
^L
RFC 1006 May 1987
2. Motivation
In migrating from the use of TCP/IP to the ISO protocols, there
are several strategies that one might undertake. This memo was
written with one particular strategy in mind.
The particular migration strategy which this memo uses is based
on the notion of gatewaying between the TCP/IP and ISO protocol
suites at the transport layer. There are two strong arguments
for this approach:
1. Experience teaches us that it takes just as long to get good
implementations of the lower level protocols as it takes to get
implementations of the higher level ones. In particular, it has
been observed that there is still a lot of work being done at the
ISO network and transport layers. As a result, implementations
of protocols above these layers are not being aggressively
pursued. Thus, something must be done "now" to provide a medium
in which the higher level protocols can be developed. Since
TCP/IP is mature, and essentially provides identical
functionality, it is an ideal medium to support this development.
2. Implementation of gateways at the IP and ISO IP layers are
probably not of general use in the long term. In effect, this
would require each Internet host to support both TP4 and TCP.
As such, a better strategy is to implement a graceful migration
path from TCP/IP to ISO protocols for the ARPA Internet when the
ISO protocols have matured sufficiently.
Both of these arguments indicate that gatewaying should occur at
or above the transport layer service access point. Further, the
first argument suggests that the best approach is to perform the
gatewaying exactly AT the transport service access point to
maximize the number of ISO layers which can be developed.
NOTE: This memo does not intend to act as a migration or
intercept document. It is intended ONLY to meet the
needs discussed above. However, it would not be
unexpected that the protocol described in this memo
might form part of an overall transition plan. The
description of such a plan however is COMPLETELY
beyond the scope of this memo.
Finally, in general, building gateways between other layers in the
TCP/IP and ISO protocol suites is problematic, at best.
To summarize: the primary motivation for the standard described in
this memo is to facilitate the process of gaining experience with
higher-level ISO protocols (session, presentation, and
application). The stability and maturity of TCP/IP are ideal for
M. Rose & D. Cass [Page 4]
^L
RFC 1006 May 1987
providing solid transport services independent of actual
implementation.
M. Rose & D. Cass [Page 5]
^L
RFC 1006 May 1987
3. The Model
The [ISO8072] standard describes the ISO transport service
definition, henceforth called TP.
ASIDE: This memo references the ISO specifications rather
than the CCITT recommendations. The differences
between these parallel standards are quite small,
and can be ignored, with respect to this memo,
without loss of generality. To provide the reader
with the relationships:
Transport service [ISO8072] [X.214]
Transport protocol [ISO8073] [X.224]
Session protocol [ISO8327] [X.225]
The ISO transport service definition describes the services
offered by the TS-provider (transport service) and the interfaces
used to access those services. This memo focuses on how the ARPA
Transmission Control Protocol (TCP) [RFC793] can be used to offer
the services and provide the interfaces.
+-----------+ +-----------+
| TS-user | | TS-user |
+-----------+ +-----------+
| |
| TSAP interface TSAP interface |
| [ISO8072] |
| |
+----------+ ISO Transport Services on the TCP +----------+
| client |-----------------------------------------| server |
+----------+ (this memo) +----------+
| |
| TCP interface TCP interface |
| [RFC793] |
| |
For expository purposes, the following abbreviations are used:
TS-peer a process which implements the protocol described
by this memo
TS-user a process talking using the services of a TS-peer
M. Rose & D. Cass [Page 6]
^L
RFC 1006 May 1987
TS-provider the black-box entity implementing the protocol
described by this memo
For the purposes of this memo, which describes version 2 of the
TSAP protocol, all aspects of [ISO8072] are supported with one
exception:
Quality of Service parameters
In the spirit of CCITT, this is left "for further study". A
future version of the protocol will most likely support the QOS
parameters for TP by mapping these onto various TCP parameters.
The ISO standards do not specify the format of a session port
(termed a TSAP ID). This memo mandates the use of the GOSIP
specification [GOSIP86] for the interpretation of this field.
(Please refer to Section 5.2, entitled "UPPER LAYERS ADDRESSING".)
Finally, the ISO TSAP is fundamentally symmetric in behavior.
There is no underlying client/server model. Instead of a server
listening on a well-known port, when a connection is established,
the TS-provider generates an INDICATION event which, presumably
the TS-user catches and acts upon. Although this might be
implemented by having a server "listen" by hanging on the
INDICATION event, from the perspective of the ISO TSAP, all TS-
users just sit around in the IDLE state until they either generate
a REQUEST or accept an INDICATION.
M. Rose & D. Cass [Page 7]
^L
RFC 1006 May 1987
4. The Primitives
The protocol assumes that the TCP[RFC793] offers the following
service primitives:
Events
connected - open succeeded (either ACTIVE or PASSIVE)
connect fails - ACTIVE open failed
data ready - data can be read from the connection
errored - the connection has errored and is now closed
closed - an orderly disconnection has started
Actions
listen on port - PASSIVE open on the given port
open port - ACTIVE open to the given port
read data - data is read from the connection
send data - data is sent on the connection
close - the connection is closed (pending data is
sent)
This memo describes how to use these services to emulate the following
service primitives, which are required by [ISO8073]:
Events
N-CONNECT.INDICATION
- An NS-user (responder) is notified that
connection establishment is in progress
N-CONNECT.CONFIRMATION
- An NS-user (responder) is notified that
the connection has been established
N-DATA.INDICATION
- An NS-user is notified that data can be
read from the connection
M. Rose & D. Cass [Page 8]
^L
RFC 1006 May 1987
N-DISCONNECT.INDICATION
- An NS-user is notified that the connection
is closed
Actions
N-CONNECT.REQUEST
- An NS-user (initiator) indicates that it
wants to establish a connection
N-CONNECT.RESPONSE
- An NS-user (responder) indicates that it
will honor the request
N-DATA.REQUEST - An NS-user sends data
N-DISCONNECT.REQUEST
- An NS-user indicates that the connection
is to be closed
The protocol offers the following service primitives, as defined
in [ISO8072], to the TS-user:
Events
T-CONNECT.INDICATION
- a TS-user (responder) is notified that
connection establishment is in progress
T-CONNECT.CONFIRMATION
- a TS-user (initiator) is notified that the
connection has been established
T-DATA.INDICATION
- a TS-user is notified that data can be read
from the connection
T-EXPEDITED DATA.INDICATION
- a TS-user is notified that "expedited" data
can be read from the connection
T-DISCONNECT.INDICATION
- a TS-user is notified that the connection
is closed
M. Rose & D. Cass [Page 9]
^L
RFC 1006 May 1987
Actions
T-CONNECT.REQUEST
- a TS-user (initiator) indicates that it
wants to establish a connection
T-CONNECT.RESPONSE
- a TS-user (responder) indicates that it
will honor the request
T-DATA.REQUEST - a TS-user sends data
T-EXPEDITED DATA.REQUEST
- a TS-user sends "expedited" data
T-DISCONNECT.REQUEST
- a TS-user indicates that the connection
is to be closed
M. Rose & D. Cass [Page 10]
^L
RFC 1006 May 1987
5. The Protocol
The protocol specified by this memo is identical to the protocol
for ISO transport class 0, with the following exceptions:
- for testing purposes, initial data may be exchanged
during connection establishment
- for testing purposes, an expedited data service is
supported
- for performance reasons, a much larger TSDU size is
supported
- the network service used by the protocol is provided
by the TCP
The ISO transport protocol exchanges information between peers in
discrete units of information called transport protocol data units
(TPDUs). The protocol defined in this memo encapsulates these
TPDUs in discrete units called TPKTs. The structure of these
TPKTs and their relationship to TPDUs are discussed in the next
section.
PRIMITIVES
The mapping between the TCP service primitives and the service
primitives expected by transport class 0 are quite straight-
forward:
network service TCP
--------------- ---
CONNECTION ESTABLISHMENT
N-CONNECT.REQUEST open completes
N-CONNECT.INDICATION listen (PASSIVE open)
finishes
N-CONNECT.RESPONSE listen completes
N-CONNECT.CONFIRMATION open (ACTIVE open)
finishes
DATA TRANSFER
N-DATA.REQUEST send data
N-DATA.INDICATION data ready followed by
M. Rose & D. Cass [Page 11]
^L
RFC 1006 May 1987
read data
CONNECTION RELEASE
N-DISCONNECT.REQUEST close
N-DISCONNECT.INDICATION connection closes or
errors
Mapping parameters is also straight-forward:
network service TCP
--------------- ---
CONNECTION RELEASE
Called address server's IP address
(4 octets)
Calling address client's IP address
(4 octets)
all others ignored
DATA TRANSFER
NS-user data (NSDU) data
CONNECTION RELEASE
all parameters ignored
CONNECTION ESTABLISHMENT
The elements of procedure used during connection establishment
are identical to those presented in [ISO8073], with three
exceptions.
In order to facilitate testing, the connection request and
connection confirmation TPDUs may exchange initial user data,
using the user data fields of these TPDUs.
In order to experiment with expedited data services, the
connection request and connection confirmation TPDUs may
negotiate the use of expedited data transfer using the
negotiation mechanism specified in [ISO8073] is used (e.g.,
setting the "use of transport expedited data transfer service"
bit in the "Additional Option Selection" variable part). The
default is not to use the transport expedited data transfer
service.
M. Rose & D. Cass [Page 12]
^L
RFC 1006 May 1987
In order to achieve good performance, the default TPDU size is
65531 octets, instead of 128 octets. In order to negotiate a
smaller (standard) TPDU size, the negotiation mechanism
specified in [ISO8073] is used (e.g., setting the desired bit
in the "TPDU Size" variable part).
To perform an N-CONNECT.REQUEST action, the TS-peer performs
an active open to the desired IP address using TCP port 102.
When the TCP signals either success or failure, this results
in an N-CONNECT.INDICATION action.
To await an N-CONNECT.INDICATION event, a server listens on
TCP port 102. When a client successfully connects to this
port, the event occurs, and an implicit N-CONNECT.RESPONSE
action is performed.
NOTE: In most implementations, a single server will
perpetually LISTEN on port 102, handing off
connections as they are made
DATA TRANSFER
The elements of procedure used during data transfer are identical
to those presented in [ISO8073], with one exception: expedited
data may be supported (if so negotiated during connection
establishment) by sending a modified ED TPDU (described below).
The TPDU is sent on the same TCP connection as all of the other
TPDUs. This method, while not faithful to the spirit of [ISO8072],
is true to the letter of the specification.
To perform an N-DATA.REQUEST action, the TS-peer constructs the
desired TPKT and uses the TCP send data primitive.
To trigger an N-DATA.INDICATION action, the TCP indicates that
data is ready and a TPKT is read using the TCP read data
primitive.
CONNECTION RELEASE
To perform an N-DISCONNECT.REQUEST action, the TS-peer simply closes
the TCP connection.
If the TCP informs the TS-peer that the connection has been closed or
has errored, this indicates an N-DISCONNECT.INDICATION event.
M. Rose & D. Cass [Page 13]
^L
RFC 1006 May 1987
6. Packet Format
A fundamental difference between the TCP and the network service
expected by TP0 is that the TCP manages a continuous stream of
octets, with no explicit boundaries. The TP0 expects information
to be sent and delivered in discrete objects termed network
service data units (NSDUs). Although other classes of transport
may combine more than one TPDU inside a single NSDU, transport
class 0 does not use this facility. Hence, an NSDU is identical
to a TPDU for the purposes of our discussion.
The protocol described by this memo uses a simple packetization
scheme in order to delimit TPDUs. Each packet, termed a TPKT, is
viewed as an object composed of an integral number of octets, of
variable length.
NOTE: For the purposes of presentation, these objects are
shown as being 4 octets (32 bits wide). This
representation is an artifact of the style of this
memo and should not be interpreted as requiring
that a TPKT be a multiple of 4 octets in length.
A TPKT consists of two parts: a packet-header and a TPDU. The
format of the header is constant regardless of the type of packet.
The format of the packet-header is as follows:
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| vrsn | reserved | packet length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
where:
vrsn 8 bits
This field is always 3 for the version of the protocol described in
this memo.
packet length 16 bits (min=7, max=65535)
This field contains the length of entire packet in octets,
including packet-header. This permits a maximum TPDU size of
65531 octets. Based on the size of the data transfer (DT) TPDU,
this permits a maximum TSDU size of 65524 octets.
The format of the TPDU is defined in [ISO8073]. Note that only
TPDUs formatted for transport class 0 are exchanged (different
transport classes may use slightly different formats).
M. Rose & D. Cass [Page 14]
^L
RFC 1006 May 1987
To support expedited data, a non-standard TPDU, for expedited data
is permitted. The format used for the ED TPDU is nearly identical
to the format for the normal data, DT, TPDU. The only difference
is that the value used for the TPDU's code is ED, not DT:
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| header length | code |credit |TPDU-NR and EOT| user data |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| ... | ... | ... | ... |
| ... | ... | ... | ... |
| ... | ... | ... | ... |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
After the credit field (which is always ZERO on output and ignored
on input), there is one additional field prior to the user data.
TPDU-NR and EOT 8 bits
Bit 7 (the high-order bit, bit mask 1000 0000) indicates the end
of a TSDU. All other bits should be ZERO on output and ignored on
input.
Note that the TP specification limits the size of an expedited
transport service data unit (XSDU) to 16 octets.
M. Rose & D. Cass [Page 15]
^L
RFC 1006 May 1987
7. Comments
Since the release of RFC983 in April of 1986, we have gained much
experience in using ISO transport services on top of the TCP. In
September of 1986, we introduced the use of version 2 of the
protocol, based mostly on comments from the community.
In January of 1987, we observed that the differences between
version 2 of the protocol and the actual transport class 0
definition were actually quite small. In retrospect, this
realization took much longer than it should have: TP0 is is meant
to run over a reliable network service, e.g., X.25. The TCP can be
used to provide a service of this type, and, if no one complains
too loudly, one could state that this memo really just describes a
method for encapsulating TPO inside of TCP!
The changes in going from version 1 of the protocol to version 2
and then to version 3 are all relatively small. Initially, in
describing version 1, we decided to use the TPDU formats from the
ISO transport protocol. This naturally led to the evolution
described above.
M. Rose & D. Cass [Page 16]
^L
RFC 1006 May 1987
8. References
[GOSIP86] The U.S. Government OSI User's Committee.
"Government Open Systems Interconnection Procurement
(GOSIP) Specification for Fiscal years 1987 and
1988." (December, 1986) [draft status]
[ISO8072] ISO.
"International Standard 8072. Information Processing
Systems -- Open Systems Interconnection: Transport
Service Definition."
(June, 1984)
[ISO8073] ISO.
"International Standard 8073. Information Processing
Systems -- Open Systems Interconnection: Transport
Protocol Specification."
(June, 1984)
[ISO8327] ISO.
"International Standard 8327. Information Processing
Systems -- Open Systems Interconnection: Session
Protocol Specification."
(June, 1984)
[RFC791] Internet Protocol.
Request for Comments 791 (MILSTD 1777)
(September, 1981)
[RFC793] Transmission Control Protocol.
Request for Comments 793 (MILSTD 1778)
(September, 1981)
[RFC983] ISO Transport Services on Top of the TCP.
Request for Comments 983
(April, 1986)
[X.214] CCITT.
"Recommendation X.214. Transport Service Definitions
for Open Systems Interconnection (OSI) for CCITT
Applications."
(October, 1984)
[X.224] CCITT.
"Recommendation X.224. Transport Protocol
Specification for Open Systems Interconnection (OSI)
for CCITT Applications." (October, 1984)
M. Rose & D. Cass [Page 17]
^L
RFC 1006 May 1987
[X.225] CCITT.
"Recommendation X.225. Session Protocol Specification
for Open Systems Interconnection (OSI) for CCITT
Applications."
(October, 1984)
M. Rose & D. Cass [Page 18]
^L
|