blob: 1bdc9b675b08f6ea4a6dfdcaedad854b45e91b16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
$NetBSD: patch-src_zm_remote_camera_h,v 1.4 2015/04/05 08:51:08 dsainty Exp $
Declare sockaddr_in.
--- src/zm_remote_camera.h.orig 2015-02-05 15:52:37.000000000 +1300
+++ src/zm_remote_camera.h 2015-04-01 17:56:10.736361360 +1300
@@ -23,10 +23,13 @@
#include "zm_camera.h"
#include "zm_rtsp_auth.h"
+#include <netinet/in.h>
+
#include <string>
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
+#include <time.h>
//
// Class representing 'remote' cameras, i.e. those which are
|