1 /*
2  * This is just re-using the same code-paths as in arcan-net with a different
3  * routine to argument parsing and debug output.
4  *
5  * What it needs 'extra' is basically a rendezvous / dictionary server used for
6  * local / p2p service exchange to learn of keys.
7  *
8  * Another worthwhile distinction is that remoting and encode also provides
9  * some a12 client/server functionality, but those are for working with
10  * 'composited' desktops, while this one is between arcan clients across a12.
11  */
12 
13 #include <arcan_shmif.h>
14 #include <arcan_shmif_server.h>
15 
16 #include <sys/types.h>
17 #include <sys/socket.h>
18 #include <netdb.h>
19 #include "a12.h"
20 #include "../../util/anet_helper.h"
21 
afsrv_netcl(struct arcan_shmif_cont * c,struct arg_arr * args)22 int afsrv_netcl(struct arcan_shmif_cont* c, struct arg_arr* args)
23 {
24 
25 	return EXIT_FAILURE;
26 }
27 
afsrv_netsrv(struct arcan_shmif_cont * c,struct arg_arr * args)28 int afsrv_netsrv(struct arcan_shmif_cont* c, struct arg_arr* args)
29 {
30 	return EXIT_FAILURE;
31 }
32