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

Pico masque #1747

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 9 commits
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
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ set(PICOHTTP_LIBRARY_FILES
picohttp/h3zero_common.c
picohttp/h3zero_server.c
picohttp/h3zero_uri.c
picohttp/picomask.c
picohttp/quicperf.c
picohttp/siduck.c
picohttp/webtransport.c
Expand All @@ -203,12 +204,14 @@ set(PICOHTTP_HEADERS
picohttp/democlient.h
picohttp/demoserver.h
picohttp/pico_webtransport.h
picohttp/picomask.h
picohttp/wt_baton.h)

set(PICOHTTP_TEST_LIBRARY_FILES
picoquictest/h3zerotest.c
picoquictest/h3zero_stream_test.c
picoquictest/h3zero_uri_test.c
picoquictest/picomask_test.c
picoquictest/webtransport_test.c)

OPTION(PICOQUIC_FETCH_PTLS "Fetch PicoTLS during configuration" OFF)
Expand Down
2 changes: 2 additions & 0 deletions picohttp/picohttp.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@
<ClCompile Include="h3zero_common.c" />
<ClCompile Include="h3zero_server.c" />
<ClCompile Include="h3zero_uri.c" />
<ClCompile Include="picomask.c" />
<ClCompile Include="quicperf.c" />
<ClCompile Include="siduck.c" />
<ClCompile Include="webtransport.c" />
Expand All @@ -155,6 +156,7 @@
<ClInclude Include="h3zero.h" />
<ClInclude Include="h3zero_common.h" />
<ClInclude Include="h3zero_uri.h" />
<ClInclude Include="picomask.h" />
<ClInclude Include="pico_webtransport.h" />
<ClInclude Include="quicperf.h" />
<ClInclude Include="siduck.h" />
Expand Down
6 changes: 6 additions & 0 deletions picohttp/picohttp.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
<ClCompile Include="h3zero_uri.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="picomask.c">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="democlient.h">
Expand Down Expand Up @@ -66,6 +69,9 @@
<ClInclude Include="h3zero_uri.h">
<Filter>Source Files</Filter>
</ClInclude>
<ClInclude Include="picomask.h">
<Filter>Source Files</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<Filter Include="Source Files">
Expand Down
Loading
Loading