date: 2024-02-20
title: 01-Basic Concepts
status: DONE
author:
- AllenYGY
tags:
- NOTE
- Network
- Lec1
created: 2024-02-20T11:32
updated: 2024-05-28T20:52
publish: True
Basic Concepts
Efficiency : 50%
Efficiency : 80%
Networks are recognized as a stack of layers or levels, each one built upon the one below it.
Management of complex systems:
A service is formally specified by a set of primitives (operations) available to a user process to access the service. These primitives tell the service to perform some action or report on an action taken by a peer entity.
Primitives | Meaning |
---|---|
LISTEN | Block waiting for an incoming connection |
CONNECT | Establish a connection with a waiting peer |
RECEIVE | Block waiting for an incoming message |
SEND | Send a message to the peer |
DISCONNECT | Terminate a connection |