22 lines
234 B
C
22 lines
234 B
C
#include "util/net.h"
|
|
|
|
#include <unistd.h>
|
|
|
|
#include "config.h"
|
|
|
|
bool
|
|
net_init(void) {
|
|
// do nothing
|
|
return true;
|
|
}
|
|
|
|
void
|
|
net_cleanup(void) {
|
|
// do nothing
|
|
}
|
|
|
|
bool
|
|
net_close(socket_t socket) {
|
|
return !close(socket);
|
|
}
|