Skip to content

Commit fc7da03

Browse files
save file
1 parent 9dc3f44 commit fc7da03

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

blog/25-12-03/unix-sockets/unix-sockets.html

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@
7777

7878
ex['client-win-js'] = mod['client-win-js'];
7979
ex['client-linux-c'] = mod['client-linux-c'];
80+
ex['client-linux-nodejs'] = mod['client-linux-nodejs'];
81+
ex['client-win-c'] = mod['client-win-c'];
8082

8183
hdr.initmod({ext,$});
8284
log.initmod({ext,$});
@@ -88,6 +90,8 @@
8890

8991
ex['client-win-js'].initmod({ext,$,menu,ace});
9092
ex['client-linux-c'].initmod({ext,$,menu,ace});
93+
ex['client-linux-nodejs'].initmod({ext,$,menu,ace});
94+
ex['client-win-c'].initmod({ext,$,menu,ace});
9195

9296

9397
await Promise.all([
@@ -101,6 +105,8 @@
101105

102106
ex['client-win-js'].init(),
103107
ex['client-linux-c'].init(),
108+
ex['client-linux-nodejs'].init(),
109+
ex['client-win-c'].init(),
104110

105111
]);
106112

@@ -323,6 +329,32 @@ <h3>
323329
<web-editor id=client-linux-c src='ex/ipc-client-linux.c' fullsize component></web-editor>
324330

325331
</section>
332+
333+
334+
<section class=blog-text>
335+
<h3>
336+
ipc client linux nodejs
337+
</h3>
338+
<p>
339+
the following sets up an ipc unix domain socket client on linux in nodejs
340+
</p>
341+
342+
<web-editor id=client-linux-nodejs src='ex/ipc-client-linux.node.js' fullsize component></web-editor>
343+
344+
</section>
345+
346+
347+
<section class=blog-text>
348+
<h3>
349+
ipc client windows c
350+
</h3>
351+
<p>
352+
the following sets up an ipc unix domain socket client on windows in c
353+
</p>
354+
355+
<web-editor id=client-win-c src='ex/ipc-client-win.c' fullsize component></web-editor>
356+
357+
</section>
326358

327359

328360

@@ -356,6 +388,8 @@ <h3>
356388

357389
ex['client-win-js'].initdom();
358390
ex['client-linux-c'].initdom();
391+
ex['client-linux-nodejs'].initdom();
392+
ex['client-win-c'].initdom();
359393

360394

361395
}//initdom

0 commit comments

Comments
 (0)