You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
306 B
17 lines
306 B
#ifndef DEVICE_H
|
|
#define DEVICE_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "config.h"
|
|
#include "common.h"
|
|
#include "util/net.h"
|
|
|
|
#define DEVICE_NAME_FIELD_LENGTH 64
|
|
|
|
// name must be at least DEVICE_NAME_FIELD_LENGTH bytes
|
|
bool
|
|
device_read_info(socket_t device_socket, char *device_name, struct size *size);
|
|
|
|
#endif
|