Mercurial
changeset 122:96628cf126a0
[MrJuneJune] Websocket blog.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Thu, 08 Jan 2026 06:45:51 -0800 |
| parents | 7b1719fa918c |
| children | 3f4ec30e42e0 |
| files | mrjunejune/src/blog/index.html mrjunejune/test/integration_test.c |
| diffstat | 2 files changed, 8 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mrjunejune/src/blog/index.html Thu Jan 08 06:45:10 2026 -0800 +++ b/mrjunejune/src/blog/index.html Thu Jan 08 06:45:51 2026 -0800 @@ -9,6 +9,10 @@ <h1 class="title" style="margin-bottom: 20px;"> Blogs </h1> <ul style="list-style: none;"> <li style="margin-bottom: 20px;"> + <span> January 08 2026 </span> + <p><h4><a href="/blog/websocket-demystified">Websocket Demystified</a></h4></p> + </li> + <li style="margin-bottom: 20px;"> <span> January 02 2026 </span> <p><h4><a href="/blog/my-seobeo-journey">Creating Network Library in C</a></h4></p> </li>
--- a/mrjunejune/test/integration_test.c Thu Jan 08 06:45:10 2026 -0800 +++ b/mrjunejune/test/integration_test.c Thu Jan 08 06:45:51 2026 -0800 @@ -10,7 +10,10 @@ #define TEST_PORT "6969" #define TEST_HOST "127.0.0.1" #define MAX_RESPONSE_SIZE (1024 * 1024) -#define SNAPSHOT_DIR "mrjunejune/test/snapshots" +#ifndef SNAPSHOT_DIR + // TODO: Make it as current directory /snapshots... + #define SNAPSHOT_DIR "mrjunejune/test/snapshots" +#endif // Test case structure typedef struct {