> For the complete documentation index, see [llms.txt](https://fish-networking.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fish-networking.gitbook.io/docs/guides/high-level-overview/transports.md).

# Transports

The **Transport** is the low-level layer responsible for sending and receiving raw data over the network. It abstracts away the details of TCP/UDP sockets and handles packet delivery, reliability, ordering, etc.

FishNet uses events internally to plug into transport messages. Although it be unlikely you would need to access such messages, they are available to you for your development as well.

There are many transports available, some are maintained by the Fish-Networking team and others maintained by the community.

* [Tugboat](/docs/fishnet-building-blocks/transports/tugboat.md) (LiteNetLib)
* [Bayou](/docs/fishnet-building-blocks/transports/bayou.md) (WebGL)
* [Yak](/docs/fishnet-building-blocks/transports/yak-pro-feature.md) (For offline gameplay)
* [Multipass](/docs/fishnet-building-blocks/transports/multipass.md) (Multi-transport support)
* [FishySteamworks](/docs/fishnet-building-blocks/transports/fishysteamworks.md) (Steamworks.NET)
* [FishyFacepunch](/docs/fishnet-building-blocks/transports/fishyfacepunch-steam.md) (Facepunch for Steam)
* [FishyEOS](/docs/fishnet-building-blocks/transports/fishyeos-epic-online-services.md) (Epic Online Services)
* [FishyUnityTransport](/docs/fishnet-building-blocks/transports/fishyunitytransport.md) (Unity Transport)
* [FishyRealtime](https://github.com/REIO7200/FishyRealtime) (Photon Realtime)
* [FishyWebRTC](https://github.com/cakeslice/FishyWebRTC) (WebRTC)
* [CanoeWebRTC](https://github.com/gmrodriguez124/CanoeWebRTC) (WebRTC)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://fish-networking.gitbook.io/docs/guides/high-level-overview/transports.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
