blob: 08b6260671f3af63c96c5cd84ef298ff22c71964 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef _OG_REPO_H_
#define _OG_REPO_H_
#include <stdint.h>
#include "list.h"
#define OG_ADDR_REPO_MAX 16
struct og_repo {
struct list_head list;
const char *name;
uint32_t id;
struct in_addr addr[OG_ADDR_REPO_MAX];
int num_ips;
};
int og_repo_list(struct list_head *repo_list);
void og_repo_free_list(struct list_head *repo_list);
#endif
|