Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integrate transport steram buffer API changes #165

Merged
merged 7 commits into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,14 @@ openssl req -nodes -x509 -newkey rsa:2048 -days 365 \
-keyout server-key.pem -out server-cert.pem
```

#### MbedTLS cert

```
openssl req -nodes -x509 -newkey ec:<(openssl ecparam -name secp256r1) -days 365 \
-subj "/C=US/ST=CA/L=San Jose/O=Cisco/CN=test.quicr.ctgpoc.com" \
-keyout server-key.pem -out server-cert.pem
```

Run:

```
Expand Down
6 changes: 6 additions & 0 deletions include/quicr/encode.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@ operator<<(MessageBuffer& msg, const std::string& val);
MessageBuffer&
operator>>(MessageBuffer& msg, std::string& val);

MessageBuffer&
operator<<(MessageBuffer& msg, const uint32_t val);

MessageBuffer&
operator>>(MessageBuffer& msg, uint32_t& val);
TimEvens marked this conversation as resolved.
Show resolved Hide resolved

/*===========================================================================*/
// Connection message MessageBuffer operator overloads.
/*===========================================================================*/
Expand Down
Loading
Loading