summaryrefslogtreecommitdiff
path: root/src/main/scala/com/tylerstonge/honeypot/messages
diff options
context:
space:
mode:
authorTyler St. Onge <tylertstonge@gmail.com>2020-11-05 15:16:00 -0500
committerTyler St. Onge <tylertstonge@gmail.com>2020-11-05 15:16:00 -0500
commita7ba75b1b6ca4faa392cb3e5655fc784687e02ac (patch)
tree2fbb86557038b616513e1e2561d4e7ad7ae30d0e /src/main/scala/com/tylerstonge/honeypot/messages
parent07abec1108c69cf1f85ae039066e90f14eaca78a (diff)
added discord reporter
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)