teeworlds_network/examples/02_packet_debugger.rb

12 lines
275 B
Ruby
Raw Normal View History

2022-11-05 10:07:16 +00:00
#!/usr/bin/env ruby
2022-11-05 16:27:54 +00:00
# frozen_string_literal: true
2022-11-05 10:07:16 +00:00
2022-11-04 15:57:50 +00:00
# Prints out all network traffic
require_relative '../lib/teeworlds_client'
2022-11-04 15:57:50 +00:00
client = TeeworldsClient.new(verbose: true)
# connect to localhost and block the current thread
2022-11-05 10:07:16 +00:00
client.connect('localhost', 8303, detach: false)