source: trunk/third/cns/src/kadmin/Design.txt @ 8789

Revision 8789, 807 bytes checked in by ghudson, 28 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r8788, which included commits to RCS files with non-trunk default branches.
Line 
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)
9kadm_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
Note: See TracBrowser for help on using the repository browser.