AUX connecion

Get Help on scripting in POL with configurations, config setups, script trouble shooting, etc.

Moderator: POL Developer

Post Reply
CrazyMan
Expert Poster
Posts: 71
Joined: Wed Apr 05, 2006 8:08 am
Contact:

AUX connecion

Post by CrazyMan »

1. How i can from aux connection script close connect?
2. How i can use one scripts for many connection simultaneously ?

Tnks.
User avatar
tekproxy
Forum Regular
Posts: 352
Joined: Thu Apr 06, 2006 5:11 pm
Location: Nederland, Texas

Post by tekproxy »

1. I am not sure what you mean. Do you want to know how to make an aux script close the connection? Does this example help?:

Code: Select all

program auxControl( connection )
  print( "Aux control: Connection established." );

  while ( connection )
    // Do stuff
    connection := 0;
  endwhile
  
  print( "Aux control: Connection closed." );
endprogram
2. I do not see how a script could NOT handle many connections. Could you perhaps show some of your code?
Post Reply