//configuration du socket UDP clearBuffer(siSocketUDP) if(sioCtrl(siSocketUDP, "target", "172.16.6.59")!=0) call logMsgBlock("probleme sioCtrl(siSocketUDP, target, 172.16.6.59)", true) endIf //"endOfString" num (Pour ligne série, client et serveur UDP) Code ASCII pour le caractère de fin de chaîne à utiliser avec les opérateurs '=' (dans la plage [0, 255]) if(sioCtrl(siSocketUDP, "endOfString", 13)!=0) call logMsgBlock("probleme sioCtrl(siSocketUDP, endOfString, 13)",true) endIf //port 10000 utilisé par socket UDP if(sioCtrl(siSocketUDP, "port", 10000)!=0) call logMsgBlock("probleme sioCtrl(siSocketUDP, port, 10000)",true) endIf //0 pour configurer les lectures sur socket bloquante, //une autre valeur en seconde sinon if(sioCtrl(siSocketUDP, "timeout",1)!=0 ) call logMsgBlock("probleme sioCtrl(siSocketUDP, timeout,1)",true) endIf