Source code for zlogging.enum.MOUNT3
# -*- coding: utf-8 -*-
"""Namespace: ``MOUNT3``."""
from zlogging._compat import enum
[docs]@enum.unique
class auth_flavor_t(enum.IntFlag):
"""c.f. `base/bif/types.bif.zeek <https://docs.zeek.org/en/stable/scripts/base/bif/types.bif.zeek.html#type-MOUNT3::auth_flavor_t>`__"""
_ignore_ = 'auth_flavor_t _'
auth_flavor_t = vars()
auth_flavor_t['AUTH_NULL'] = enum.auto()
auth_flavor_t['AUTH_UNIX'] = enum.auto()
auth_flavor_t['AUTH_SHORT'] = enum.auto()
auth_flavor_t['AUTH_DES'] = enum.auto()
[docs]@enum.unique
class proc_t(enum.IntFlag):
"""c.f. `base/bif/types.bif.zeek <https://docs.zeek.org/en/stable/scripts/base/bif/types.bif.zeek.html#type-MOUNT3::proc_t>`__"""
_ignore_ = 'proc_t _'
proc_t = vars()
proc_t['PROC_NULL'] = enum.auto()
proc_t['PROC_MNT'] = enum.auto()
proc_t['PROC_DUMP'] = enum.auto()
proc_t['PROC_UMNT'] = enum.auto()
proc_t['PROC_UMNT_ALL'] = enum.auto()
proc_t['PROC_EXPORT'] = enum.auto()
proc_t['PROC_END_OF_PROCS'] = enum.auto()
[docs]@enum.unique
class status_t(enum.IntFlag):
"""c.f. `base/bif/types.bif.zeek <https://docs.zeek.org/en/stable/scripts/base/bif/types.bif.zeek.html#type-MOUNT3::status_t>`__"""
_ignore_ = 'status_t _'
status_t = vars()
status_t['MNT3_OK'] = enum.auto()
status_t['MNT3ERR_PERM'] = enum.auto()
status_t['MNT3ERR_NOENT'] = enum.auto()
status_t['MNT3ERR_IO'] = enum.auto()
status_t['MNT3ERR_ACCES'] = enum.auto()
status_t['MNT3ERR_NOTDIR'] = enum.auto()
status_t['MNT3ERR_INVAL'] = enum.auto()
status_t['MNT3ERR_NAMETOOLONG'] = enum.auto()
status_t['MNT3ERR_NOTSUPP'] = enum.auto()
status_t['MNT3ERR_SERVERFAULT'] = enum.auto()
status_t['MOUNT3ERR_UNKNOWN'] = enum.auto()