Node:get-members-old, Next:, Previous:get-created-texts, Up:Protocol Requests



get-members-old [48] (1) Obsolete (10)


        get-members-old [48] (( conf            : Conf-No;
                                first           : INT16;
                                no-of-members   : INT16 ))
                -> ( ARRAY Pers-No );

This call returns a list of members of the conference conf. first is the first index in the membership to return, numbered from zero and up. no-of-members is the maximum number of members to return.

Example:

        1 48 1 0 100
        =1 4 { 7 8 9 10 }
        1 48 6 0 100
        =1 4 { 5 7 9 10 }
        1 48 6 2 2
        =1 2 { 9 10 }

In this example the client first requests the first 100 members in conference 1. The second request is for the first 100 members of conference 6. The last request is for members 2 and 3 in conference 6. As can be seen from the examples, the returned list is truncated if there are fewer members than requested.

Error codes

undefined-conference
The conference conf does not exist or is secret.
index-out-of-range
first is higher than the number of members in conf.