Settings is the options to establish between endpoints when starting the connection. These options have been humanized.
| 29 | // |
| 30 | // These options have been humanized. |
| 31 | type Settings struct { |
| 32 | ack bool |
| 33 | rawSettings []byte |
| 34 | tableSize uint32 |
| 35 | enablePush bool |
| 36 | maxStreams uint32 |
| 37 | windowSize uint32 |
| 38 | frameSize uint32 |
| 39 | headerSize uint32 |
| 40 | } |
| 41 | |
| 42 | func (st *Settings) Type() FrameType { |
| 43 | return FrameSettings |
nothing calls this directly
no outgoing calls
no test coverage detected