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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
#ifndef __MINIDLNATYPES_H__
#define __MINIDLNATYPES_H__
#include "config.h"
#include "clients.h"
#include <time.h>
#include <fcntl.h>
#define MAX_LAN_ADDR 4
struct lan_addr_s {
char str[16];
struct in_addr addr;
struct in_addr mask;
int snotify;
unsigned int ifindex;
};
struct runtime_vars_s {
int port;
int notify_interval;
int max_connections;
const char *root_container;
const char *ifaces[MAX_LAN_ADDR];
};
struct string_s {
char *data;
size_t off;
size_t size;
};
typedef uint8_t media_types;
#define NO_MEDIA 0x00
#define TYPE_AUDIO 0x01
#define TYPE_VIDEO 0x02
#define TYPE_IMAGES 0x04
#define ALL_MEDIA TYPE_AUDIO|TYPE_VIDEO|TYPE_IMAGES
enum file_types {
TYPE_UNKNOWN,
TYPE_DIR,
TYPE_FILE
};
struct media_dir_s {
char *path;
media_types types;
struct media_dir_s *next;
};
struct album_art_name_s {
char *name;
uint8_t wildcard;
struct album_art_name_s *next;
};
#endif
|