Skip to content

Commit 991bdcd

Browse files
save file
1 parent 280d0e2 commit 991bdcd

File tree

1 file changed

+95
-0
lines changed

1 file changed

+95
-0
lines changed

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

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,16 +71,33 @@
7171
log = mod['log-mod'];
7272

7373
ex['linux-server-js'] = mod['linux-server-js'];
74+
ex['linux-c'] = mod['linux-c'];
75+
ex['linux-js'] = mod['linux-js'];
76+
ex['win-server-js'] = mod['win-server-js'];
77+
ex['win-c'] = mod['win-c'];
78+
ex['win-js'] = mod['win-js'];
7479

7580
hdr.initmod({ext,$});
7681
log.initmod({ext,$});
82+
7783
ex['linux-server-js'].initmod({ext,$,menu,ace});
84+
ex['linux-c'].initmod({ext,$,menu,ace});
85+
ex['linux-js'].initmod({ext,$,menu,ace});
86+
ex['win-server-js'].initmod({ext,$,menu,ace});
87+
ex['win-c'].initmod({ext,$,menu,ace});
88+
ex['win-js'].initmod({ext,$,menu,ace});
7889

7990

8091
await Promise.all([
8192
hdr.init(),
8293
log.init(),
94+
8395
ex['linux-server-js'].init(),
96+
ex['linux-c'].init(),
97+
ex['linux-js'].init(),
98+
ex['win-server-js'].init(),
99+
ex['win-c'].init(),
100+
ex['win-js'].init(),
84101
]);
85102

86103

@@ -212,9 +229,81 @@ <h1 class=title>
212229
</div>
213230

214231

232+
<section class=blog-text>
233+
<h3>
234+
ipc linux server nodejs
235+
</h3>
236+
<p>
237+
the following sets up a server for a unix domain socket on linux in nodejs
238+
</p>
239+
</section>
240+
215241
<web-editor id=linux-server-js src='ex/ipc-linux-server.js' fullsize component></web-editor>
216242

217243

244+
<section class=blog-text>
245+
<h3>
246+
ipc-linux-c
247+
</h3>
248+
<p>
249+
the following sets up
250+
</p>
251+
</section>
252+
253+
<web-editor id=linux-c src='ex/ipc-linux.c' fullsize component></web-editor>
254+
255+
256+
<section class=blog-text>
257+
<h3>
258+
ipc linux nodejs
259+
</h3>
260+
<p>
261+
the following sets up
262+
</p>
263+
</section>
264+
265+
<web-editor id=linux-js src='ex/ipc-linux.js' fullsize component></web-editor>
266+
267+
268+
<section class=blog-text>
269+
<h3>
270+
ipc win server
271+
</h3>
272+
<p>
273+
the following sets up
274+
</p>
275+
</section>
276+
277+
<web-editor id=win-server-js src='ex/ipc-win-server.js' fullsize component></web-editor>
278+
279+
280+
<section class=blog-text>
281+
<h3>
282+
ipc win c
283+
</h3>
284+
<p>
285+
the following sets up
286+
</p>
287+
</section>
288+
289+
<web-editor id=win-c src='ex/ipc-win.c' fullsize component></web-editor>
290+
291+
292+
<section class=blog-text>
293+
<h3>
294+
ipc win js
295+
</h3>
296+
<p>
297+
the following sets up
298+
</p>
299+
</section>
300+
301+
<web-editor id=win-js src='ex/ipc-win.js' fullsize component></web-editor>
302+
303+
304+
305+
306+
218307
<log-mod component></log-mod>
219308

220309
</body>
@@ -226,7 +315,13 @@ <h1 class=title>
226315

227316
hdr.initdom();
228317
log.initdom();
318+
229319
ex['linux-server-js'].initdom();
320+
ex['linux-c'].initdom();
321+
ex['linux-js'].initdom();
322+
ex['win-server-js'].initdom();
323+
ex['win-c'].initdom();
324+
ex['win-js'].initdom();
230325

231326

232327
}//initdom

0 commit comments

Comments
 (0)