Rust & Zig

This commit is contained in:
Johan Maasing 2025-01-17 13:28:30 +01:00
parent ea4ef1d8b3
commit c2e16f5b83
11 changed files with 226 additions and 15 deletions

File diff suppressed because one or more lines are too long

View file

@ -3,7 +3,6 @@
#include <sys/socket.h>
#include <sys/un.h>
#include <unistd.h>
#define CLIENT_SOCK_FILE "/tmp/cclient.sock"
#define SERVER_SOCK_FILE "/tmp/udsserver.sock"
int main(void) {
@ -26,7 +25,5 @@ int main(void) {
perror("Unable to connect") ;
}
unlink (CLIENT_SOCK_FILE);
return 0;
}