File: alias.h

package info (click to toggle)
multipath-tools 0.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,992 kB
  • sloc: ansic: 63,788; perl: 1,622; makefile: 729; sh: 647; pascal: 150
file content (14 lines) | stat: -rw-r--r-- 488 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef ALIAS_H_INCLUDED
#define ALIAS_H_INCLUDED

int valid_alias(const char *alias);
int get_user_friendly_wwid(const char *alias, char *buff);
char *get_user_friendly_alias(const char *wwid, const char *alias_old,
			      const char *prefix, bool bindings_read_only);

struct config;
int check_alias_settings(const struct config *);
void cleanup_bindings(void);
struct inotify_event;
void handle_bindings_file_inotify(const struct inotify_event *event);
#endif /* ALIAS_H_INCLUDED */