nharper | 6153bc7 | 2019-05-08 12:04:34 -0700 | [diff] [blame] | 1 | # QUIC platform |
| 2 | |
| 3 | This platform/ directory exists in order to allow QUIC code to be built on |
| 4 | numerous platforms. It contains two subdirectories: |
| 5 | |
| 6 | - api/ contains platform independent class definitions for fundamental data |
| 7 | structures (e.g., IPAddress, SocketAddress, etc.). |
| 8 | - impl/ contains platform specific implementations of these data structures. |
| 9 | The content of files in impl/ will vary depending on the platform. |
| 10 | |
| 11 | Code in the parent quic/ directory should not depend on any platform specific |
| 12 | code, other than that found in impl/. |