View Single Post
Old 03-31-2004, 02:19 PM  
ADDiCT
Senior Member
 
Join Date: Aug 2003
Posts: 517
Default [iTCL] some questions about listing online users

1. Any way to get the name of the service for an online user? Like:
Code:
CHAR        szServiceName[_MAX_NAME + 1];   // Name of service
for shmem scripts.

2. Same for DataIP (although it isn't filled in yet)

3. Is it possible that REALPATH/REALDATAPATH somehow still contain the \0 character in iTCL ?
When i do:
Code:
iputs "$realpath blabla"
iputs "$datapath blabla"
the blabla isn't outputted when the variables contain data.
Not really a problem, just using this solves the problem:
Code:
iputs "$realpath"
iputs -noprefix -nonewline " blabla"
ADDiCT is offline