Esempio n. 1
0
#!/usr/bin/python2.6
# -*-coding:Latin-1 -*

#-------------------------------------------------------------------#
#         Client utilisant le protocole SnakeChannel                #
#-------------------------------------------------------------------#
 
import sys  #pour exit
import select 
import snakeChannel
 
host = '127.0.0.1';
port = 8888;

sc = snakeChannel.snakeChannel(host,port,1,False)

sc.Connexion(host, 8889)

#Test du protocole en envoyant des messages
while(1) :
	msg = raw_input('Enter message to send : ')
	sc.write(False,msg,(host, 8889))
	reply = sc.read()
	if reply :
		print 'Server reply : ' + str(reply)

Esempio n. 2
0
#!/usr/bin/python2.6
# -*-coding:Latin-1 -*

#-------------------------------------------------------------------#
#         Serveur utilisant le protocole SnakeChannel                #
#-------------------------------------------------------------------#

import sys  #pour exit
import select 
import snakeChannel
 
host = '127.0.0.1'  
port = 8889

sc = snakeChannel.snakeChannel(host,port,1,True)

#Server is running
server_running = True; 
while server_running:
	reply = sc.read()
    	if reply :
		print 'Message from Client : ' +reply[0]
		msg = 'Message "' + str(reply[0]) + '" bien reçu'
		sc.write(False,msg,(host, 8888))
 
s.close()