Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Encoding for different switching schemes #12

Open
wanko opened this issue Sep 9, 2021 · 1 comment
Open

Encoding for different switching schemes #12

wanko opened this issue Sep 9, 2021 · 1 comment

Comments

@wanko
Copy link
Collaborator

wanko commented Sep 9, 2021

  • store-and-forward
  • wormhole
@lu-hub77
Copy link
Collaborator

Circuit Switching vs. Packet Switching
Packet switching distinguishes Store & Forward Switching and Cut-through / Wormhole Switching

Current state of the project implements circuit switching (during a communication complete routing path is blocked)
Packet switching allows that only the part of the routing path is blocked where currently a packet is being sent on.
Store & Forward Switching: Complete packet is store in a node before being forwarded to the next node
Wormhole Switching: As long as the header of a packet already has been received, bits of the packet can be forwarded (Parts of routing path are stepwise blocked and unblocked) --> This would require a different encoding of communication (header + bits of packet)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants