Correction for the fix for Bug 3508 - Persistent storage support breaks Linux compatibility.
A 2nd `make install' will fail attempting to create symlink libnvmemmory.so already created by 1st install.
Install should pre-emptively delete it.
# Receive UDP packets transmitted by a broadcasting service
MYPORT = 50000
import sys
from socket import *
s = socket(AF_INET, SOCK_DGRAM)
s.bind(('', MYPORT))
while 1:
data, wherefrom = s.recvfrom(1500, 0)
sys.stderr.write(repr(wherefrom) + '\n')
sys.stdout.write(data)