Low Level Comms

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/15

flashcard set

Earn XP

Description and Tags

more ugh

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

16 Terms

1
New cards

how are messages passed over the network

as byte stream with no structure, in sockets or datagram packets

2
New cards

socket

abstraction of a network port

3
New cards

stream socket 1

reliable, no errors and failures are eventually detected

4
New cards

stream socket 2

bi-directional byte stream

5
New cards

datagram socket 1

unreliable, messages can be dropped or re-ordered

6
New cards

datagram socket 2

bi-directional exchange, bounded-length messages

7
New cards

what must both sides agree on?

data format, what type of data appears when

8
New cards

what do we need to define when defining a communications protocol?

how we use the comms medium, different host encodings for base types and value boundaries and framing

9
New cards

type of middleware 1

transaction oriented

10
New cards

type of middleware 2

procedure oriented

11
New cards

type of middleware 3

object oriented

12
New cards

type of middleware 4

message oriented

13
New cards

type of middleware 5

service oriented

14
New cards

transaction oriented middleware 1

perform transactions across machines

15
New cards

transaction oriented middleware 2

components are large grained, complete database applications

16
New cards

procedure oriented

remote procedure call