"""
def addClient(self, pCPort, pCIP):
    #Neuen Port und IP-Adresse hinzufuegen
    self.cPorts.append(pCPort)
    self.cIPs.append(pCIP)
    
    #Fuer Debugging
    #print self.cPorts
    #print self.cIPs
"""

"""
#command    = self.sSocket.recvfrom(100)[0]
#client     = self.sSocket.recvfrom(100)[1]
#clientIP   = self.sSocket.recvfrom(100)[1][0]
#clientPort = self.sSocket.recvfrom(100)[1][1]
#socket.recvfrom(BUFFER)???
"""

 
