aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmo-pcap
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2011-05-31 22:09:08 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2011-05-31 23:42:48 +0200
commit13619dd235969126d5129e5bf129d344ed2643e2 (patch)
tree4cd51fcde77040857995adffb69e7acea2d28d35 /include/osmo-pcap
parent77288207fa55e8e5d0b0f986c45b6a33ebaf891c (diff)
osmo-pcap-server: Start with the skeleton of the pcap server
Diffstat (limited to 'include/osmo-pcap')
-rw-r--r--include/osmo-pcap/osmo_pcap_server.h67
1 files changed, 67 insertions, 0 deletions
diff --git a/include/osmo-pcap/osmo_pcap_server.h b/include/osmo-pcap/osmo_pcap_server.h
new file mode 100644
index 0000000..a3f70dc
--- /dev/null
+++ b/include/osmo-pcap/osmo_pcap_server.h
@@ -0,0 +1,67 @@
+/*
+ * osmo-pcap-server code
+ *
+ * (C) 2011 by Holger Hans Peter Freyther <zecke@selfish.org>
+ * (C) 2011 by On-Waves
+ * All Rights Reserved
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+#ifndef OSMO_PCAP_SERVER_H
+#define OSMO_PCAP_SERVER_H
+
+#include <osmocom/core/select.h>
+#include <osmocom/core/linuxlist.h>
+
+#include <pcap.h>
+
+#include <time.h>
+
+struct osmo_pcap_conn {
+ /* list of connections */
+ struct llist_head entry;
+
+ /* name */
+ char *name;
+ char *remote_host;
+
+ /* Remote connection */
+ struct osmo_fd rem_fd;
+ int local_fd;
+
+ /* pcap stuff */
+ struct pcap_file_header file_hdr;
+
+ /* last time */
+ struct tm last_write;
+};
+
+struct osmo_pcap_server {
+ struct llist_head conn;
+
+ struct osmo_fd listen_fd;
+
+ char *base_path;
+};
+
+extern struct osmo_pcap_server *pcap_server;
+
+int osmo_pcap_server_listen(struct osmo_pcap_server *server);
+struct osmo_pcap_conn *osmo_pcap_server_find(struct osmo_pcap_server *ser,
+ const char *name);
+void vty_server_init(struct osmo_pcap_server *server);
+
+#endif