24 lines
807 B
Plaintext
24 lines
807 B
Plaintext
|
// This file attempts to present the internal functioning of the new kerberos
|
||
|
// admin server and interface..
|
||
|
|
||
|
//
|
||
|
// The calling side
|
||
|
//
|
||
|
|
||
|
// Outer interface (programmers interface)
|
||
|
kadm_mod_entry(vals *old_dat, vals *new_dat) returns (vals *cur_dat)
|
||
|
// sends a command telling the server to change all entries which match
|
||
|
// old_dat to entries matching new_dat
|
||
|
// returns in cur_dat the actual current values of the modified records
|
||
|
// implemented with calls to _vals_to_stream, _send_out, _take_in, and
|
||
|
// _stream_to_vals, _interpret_ret
|
||
|
|
||
|
// Inner calls
|
||
|
_vals_to_stream (vals *, unsigned char *)
|
||
|
// converts a vals structure to a byte stream for transmission over the net
|
||
|
|
||
|
_stream_to_vals (unsigned char *, vals *)
|
||
|
// converts a byte stream recieved into a vals structure
|
||
|
|
||
|
|