summaryrefslogtreecommitdiff
path: root/src/main/scala/com/tylerstonge/honeypot/messages
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/com/tylerstonge/honeypot/messages')
-rw-r--r--src/main/scala/com/tylerstonge/honeypot/messages/MNewConnection.scala3
-rw-r--r--src/main/scala/com/tylerstonge/honeypot/messages/MStartReporter.scala4
2 files changed, 6 insertions, 1 deletions
diff --git a/src/main/scala/com/tylerstonge/honeypot/messages/MNewConnection.scala b/src/main/scala/com/tylerstonge/honeypot/messages/MNewConnection.scala
new file mode 100644
index 0000000..110e6f4
--- /dev/null
+++ b/src/main/scala/com/tylerstonge/honeypot/messages/MNewConnection.scala
@@ -0,0 +1,3 @@
+package com.tylerstonge.honeypot.messages
+
+case class MNewConnection(ip: String)
diff --git a/src/main/scala/com/tylerstonge/honeypot/messages/MStartReporter.scala b/src/main/scala/com/tylerstonge/honeypot/messages/MStartReporter.scala
index b76c12a..a14e8bb 100644
--- a/src/main/scala/com/tylerstonge/honeypot/messages/MStartReporter.scala
+++ b/src/main/scala/com/tylerstonge/honeypot/messages/MStartReporter.scala
@@ -1,3 +1,5 @@
package com.tylerstonge.honeypot.messages
-case class MStartReporter(name: String, rtype: String)
+import org.typelevel.jawn.ast.JValue
+
+case class MStartReporter(name: String, rtype: String, options: JValue)