1 / 8

An API for Multipath Routing

An API for Multipath Routing. Aparna Srikanta Swamy CS522 Semester Project 12/05/01. What is an API ?.

murray
Télécharger la présentation

An API for Multipath Routing

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. An API for Multipath Routing Aparna Srikanta Swamy CS522 Semester Project 12/05/01 API for Multipath Routing

  2. What is an API ? • An Application Program Interface (API) allows application programs such as FTP, Telnet, Web browsers, etc., to access certain resources through a predefined and preferably consistent interface. API for Multipath Routing

  3. Overview • SERVER calls for single path routing to set up a connection • socket(), • bind(), • listen() & • accept(). • CLIENT calls : • socket() • and connect(). API for Multipath Routing

  4. To provide Multi path connection • Modify these function calls. • MULTIPATH SENDER - Sending side : • Data written by the sender has to be distributed across multiple connections. • MULTIPATH RECEIVER - Receiving side : • Packets from multiple connections have to be correlated and delivered to the receiver in the same order as received. API for Multipath Routing

  5. MULTIPATH ROUTING Sender Receiver Proxy Server Multi path Sender Multi path Receiver Proxy Server API for Multipath Routing

  6. Multipath Sender Multipath Receiver Transmit Queue Receive Queue Frame Distributor Frame Collector Socket 1 Socket 2 Socket 1 Socket 2 Proxy Server Proxy Server API for Multipath Routing

  7. Design • The library will have the following functions :- mp_socket(), mp_bind(), mp_listen(), mp_accept(), mp_connect(), mp_write(), mp_read(). • The library should allow the sender to express the list of connection relay proxy servers used. • The proxy server takes the connection request with the message indicating the destination and issues a connection request to the multi path receiver. API for Multipath Routing

  8. References • http://cs.uccs.edu/~cs522/multipath/doc/johnnyChenThesis.pdf • http://a957.g.akamai.net/7/957/3680/v0002/standards.ieee.org/reading/ieee/std/lanman/802.3-2000_part4.pdf • THE SWITCH - by Rich Seifert (Chapter on Link Aggregation) API for Multipath Routing

More Related