Change __signed to signed.
[dragonfly.git] / crypto / kerberosIV / kadmin / Design.txt
1 // This file attempts to present the internal functioning of the new kerberos
2 // admin server and interface..
3
4 //
5 // The calling side
6 //
7
8 // Outer interface (programmers interface)
9 kadm_mod_entry(vals *old_dat, vals *new_dat) returns (vals *cur_dat)
10     // sends a command telling the server to change all entries which match
11     //   old_dat to entries matching new_dat
12     // returns in cur_dat the actual current values of the modified records
13     // implemented with calls to _vals_to_stream, _send_out, _take_in, and
14     //   _stream_to_vals, _interpret_ret
15
16 // Inner calls
17 _vals_to_stream (vals *, unsigned char *)
18     // converts a vals structure to a byte stream for transmission over the net
19
20 _stream_to_vals (unsigned char *, vals *)
21     // converts a byte stream recieved into a vals structure
22
23