projects
/
petitboot
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
discover: register network devices with the device handler
[petitboot]
/
discover
/
network.h
1
#ifndef NETWORK_H
2
#define NETWORK_H
3
4
struct network;
5
struct device_handler;
6
struct waitset;
7
8
struct network *network_init(struct device_handler *handler,
9
struct waitset *waitset, bool dry_run);
10
int network_shutdown(struct network *network);
11
12
#endif /* NETWORK_H */
13