mirror of
https://github.com/servalproject/serval-dna.git
synced 2025-03-11 15:03:56 +00:00
Fix OSX specific issues
This commit is contained in:
parent
f09e6c38d2
commit
66f266a0c0
3
log.c
3
log.c
@ -25,9 +25,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|||||||
#include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#ifdef __APPLE__
|
|
||||||
#include <mach-o/dyld.h>
|
|
||||||
#endif
|
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
@ -102,6 +102,7 @@ ssize_t _mdp_recv(struct __sourceloc __whence, int socket, struct mdp_header *he
|
|||||||
}
|
}
|
||||||
|
|
||||||
struct socket_address addr;
|
struct socket_address addr;
|
||||||
|
bzero(&addr, sizeof addr);
|
||||||
struct iovec iov[]={
|
struct iovec iov[]={
|
||||||
{
|
{
|
||||||
.iov_base = (void *)header,
|
.iov_base = (void *)header,
|
||||||
|
3
os.c
3
os.c
@ -34,6 +34,9 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#ifdef __APPLE__
|
||||||
|
#include <mach-o/dyld.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
void log_info_mkdir(struct __sourceloc __whence, const char *path, mode_t mode)
|
void log_info_mkdir(struct __sourceloc __whence, const char *path, mode_t mode)
|
||||||
{
|
{
|
||||||
|
@ -1547,6 +1547,7 @@ static void mdp_poll2(struct sched_ent *alarm)
|
|||||||
uint8_t payload[1200];
|
uint8_t payload[1200];
|
||||||
struct mdp_header header;
|
struct mdp_header header;
|
||||||
struct socket_address client;
|
struct socket_address client;
|
||||||
|
bzero(&client, sizeof client);
|
||||||
client.addrlen=sizeof(client.addr);
|
client.addrlen=sizeof(client.addr);
|
||||||
|
|
||||||
struct iovec iov[]={
|
struct iovec iov[]={
|
||||||
|
Loading…
x
Reference in New Issue
Block a user