diff options
| author | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2022-05-28 11:35:50 -0700 |
|---|---|---|
| committer | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2022-05-28 11:35:50 -0700 |
| commit | aebc4d3647b9823ae8cbb57b21b1af83bfd011fb (patch) | |
| tree | 6fa8871ec45654b68e6b018d6d06969d21b7278f /hotline/access.go | |
| parent | decc2fbf5db4a05aec93462ad35d890930bddd04 (diff) | |
Misc cleanup
* Removed some unnecessary user of pointers
* Removed dead cruft
* Reorganized code
Diffstat (limited to 'hotline/access.go')
| -rw-r--r-- | hotline/access.go | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/hotline/access.go b/hotline/access.go index 1cdbeed..8d6dd63 100644 --- a/hotline/access.go +++ b/hotline/access.go @@ -28,25 +28,25 @@ const ( accessOpenUser = 16 accessModifyUser = 17 // accessChangeOwnPass = 18 // Documented but unused? - //accessSendPrivMsg = 19 // This doesn't do what it seems like it should do. TODO: Investigate + // accessSendPrivMsg = 19 // This doesn't do what it seems like it should do. TODO: Investigate accessNewsReadArt = 20 accessNewsPostArt = 21 accessDisconUser = 22 // Toggles red user name in user list accessCannotBeDiscon = 23 accessGetClientInfo = 24 - //accessUploadAnywhere = 25 - //accessAnyName = 26 - //accessNoAgreement = 27 - //accessSetFileComment = 28 - //accessSetFolderComment = 29 - //accessViewDropBoxes = 30 + // accessUploadAnywhere = 25 + // accessAnyName = 26 + // accessNoAgreement = 27 + // accessSetFileComment = 28 + // accessSetFolderComment = 29 + // accessViewDropBoxes = 30 accessMakeAlias = 31 accessBroadcast = 32 accessNewsDeleteArt = 33 accessNewsCreateCat = 34 - //accessNewsDeleteCat = 35 + // accessNewsDeleteCat = 35 accessNewsCreateFldr = 36 - //accessNewsDeleteFldr = 37 + // accessNewsDeleteFldr = 37 ) type accessBitmap [8]byte |