#!/usr/bin/python
# -*- coding: utf-8 -*-

import sys
import socket
import json
from struct import *

UDP_PORT = 17515

s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.bind(('', UDP_PORT))

while True:
  data, address = s.recvfrom(10000) # buffer size is 1024 bytes
  #print "address: ", address
  print data
  sys.exit(0)

