I have a (mostly working, neglected) implementation of SPDYv2 in erlang (github.com/RJ/erlang-spdy). I've been following the mailing list about the v3 spec. Notable differences if you are updating a spdy library:
* various fields changed size
* compression dictionary [1] for headers block updated
* a few things clarified where spec was ambiguous
* CREDENTIAL frame, so multiple ssl certs can be used on one connection
* addition of per-stream flow control
The last two are probably the most work for implementers.
* various fields changed size
* compression dictionary [1] for headers block updated
* a few things clarified where spec was ambiguous
* CREDENTIAL frame, so multiple ssl certs can be used on one connection
* addition of per-stream flow control
The last two are probably the most work for implementers.
[1] Compression dictionary for header block: * Paper: http://www.eecis.udel.edu/~amer/PEL/poc/pdf/SPDY-Fan.pdf * The Dictionary: http://www.cis.udel.edu/~amer/PEL/SPDY/SPDY-proposed-initial...