Hello every body
I have some questions please
first of all am working with python 2.5
and when I tried to open a socket the following message appeare on the emulator
File"Z:\system\libs\socket.py",line42,in socket return socketobject(_realsocketcall(family,type,proto,family)
error

88,function not implemented')
this is the code
import socket
def Connection():
server = socket.socket(socket.AF_BT, socket.SOCK_STREAM)
channel = socket.bt_rfcomm_get_available_server_channel(server)
server.bind(("", channel))
server.listen(1)
socket.bt_advertise_service(u"btchat", server, True, socket.RFCOMM)
socket.set_security(server, socket.AUTH | socket.AUTHOR)
print "Waiting for clients..."
conn, client_addr = server.accept()
print "Client connected!"
Connection()