1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From: =?utf-8?q?Ferenc_W=C3=A1gner?= <wferi@debian.org>
Date: Sat, 4 Oct 2025 22:54:10 +0200
Subject: Restore example ipcserver address
The example ipcclient could not connect to it anymore since commit
1fae15eadceea923f44759ad755cf2bf056c0b12 changed the address of the
server socket.
---
examples/ipcserver.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/examples/ipcserver.c b/examples/ipcserver.c
index d96bcf7..9ce739a 100644
--- a/examples/ipcserver.c
+++ b/examples/ipcserver.c
@@ -365,7 +365,7 @@ main(int32_t argc, char *argv[])
qb_log_format_set(QB_LOG_STDERR, "%f:%l [%p] %b");
qb_log_ctl(QB_LOG_STDERR, QB_LOG_CONF_ENABLED, QB_TRUE);
- s1 = qb_ipcs_create("123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890", 0, ipc_type, &sh);
+ s1 = qb_ipcs_create("ipcserver", 0, ipc_type, &sh);
if (s1 == 0) {
qb_perror(LOG_ERR, "qb_ipcs_create");
exit(1);
|