blob: 1197676347295b23490f99b60c18a809c9dc453b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/**
* @file
* @section AUTHORS
*
* Authors:
* Eamon Walsh <ewalsh@tycho.nsa.gov>
*
* @section LICENSE
*
* This file is in the public domain.
*/
#ifndef _LINPICKER_LOCAL_H_
#define _LINPICKER_LOCAL_H_
/* The local socket address */
#define LINPICKER_SOCKNAME "\0linpicker-server"
/* 1-byte messages accepted over the socket */
#define LINPICKER_LOCAL_DUMP_VIEWS 0
int
local_init(int argc, char **argv);
#endif /* _LINPICKER_LOCAL_H_ */
|