constants.go 730 B

12345678910111213141516
  1. package msgtype
  2. const (
  3. KRB_AS_REQ = 10 //Request for initial authentication
  4. KRB_AS_REP = 11 //Response to KRB_AS_REQ request
  5. KRB_TGS_REQ = 12 //Request for authentication based on TGT
  6. KRB_TGS_REP = 13 //Response to KRB_TGS_REQ request
  7. KRB_AP_REQ = 14 //Application request to server
  8. KRB_AP_REP = 15 //Response to KRB_AP_REQ_MUTUAL
  9. KRB_RESERVED16 = 16 //Reserved for user-to-user krb_tgt_request
  10. KRB_RESERVED17 = 17 //Reserved for user-to-user krb_tgt_reply
  11. KRB_SAFE = 20 // Safe (checksummed) application message
  12. KRB_PRIV = 21 // Private (encrypted) application message
  13. KRB_CRED = 22 //Private (encrypted) message to forward credentials
  14. KRB_ERROR = 30 //Error response
  15. )