acronyms.go 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. package flect
  2. import "sync"
  3. var acronymsMoot = &sync.RWMutex{}
  4. var baseAcronyms = map[string]bool{
  5. "OK": true,
  6. "UTF8": true,
  7. "HTML": true,
  8. "JSON": true,
  9. "JWT": true,
  10. "ID": true,
  11. "UUID": true,
  12. "SQL": true,
  13. "ACK": true,
  14. "ACL": true,
  15. "ADSL": true,
  16. "AES": true,
  17. "ANSI": true,
  18. "API": true,
  19. "ARP": true,
  20. "ATM": true,
  21. "BGP": true,
  22. "BSS": true,
  23. "CCITT": true,
  24. "CHAP": true,
  25. "CIDR": true,
  26. "CIR": true,
  27. "CLI": true,
  28. "CPE": true,
  29. "CPU": true,
  30. "CRC": true,
  31. "CRT": true,
  32. "CSMA": true,
  33. "CMOS": true,
  34. "DCE": true,
  35. "DEC": true,
  36. "DES": true,
  37. "DHCP": true,
  38. "DNS": true,
  39. "DRAM": true,
  40. "DSL": true,
  41. "DSLAM": true,
  42. "DTE": true,
  43. "DMI": true,
  44. "EHA": true,
  45. "EIA": true,
  46. "EIGRP": true,
  47. "EOF": true,
  48. "ESS": true,
  49. "FCC": true,
  50. "FCS": true,
  51. "FDDI": true,
  52. "FTP": true,
  53. "GBIC": true,
  54. "gbps": true,
  55. "GEPOF": true,
  56. "HDLC": true,
  57. "HTTP": true,
  58. "HTTPS": true,
  59. "IANA": true,
  60. "ICMP": true,
  61. "IDF": true,
  62. "IDS": true,
  63. "IEEE": true,
  64. "IETF": true,
  65. "IMAP": true,
  66. "IP": true,
  67. "IPS": true,
  68. "ISDN": true,
  69. "ISP": true,
  70. "kbps": true,
  71. "LACP": true,
  72. "LAN": true,
  73. "LAPB": true,
  74. "LAPF": true,
  75. "LLC": true,
  76. "MAC": true,
  77. "Mbps": true,
  78. "MC": true,
  79. "MDF": true,
  80. "MIB": true,
  81. "MoCA": true,
  82. "MPLS": true,
  83. "MTU": true,
  84. "NAC": true,
  85. "NAT": true,
  86. "NBMA": true,
  87. "NIC": true,
  88. "NRZ": true,
  89. "NRZI": true,
  90. "NVRAM": true,
  91. "OSI": true,
  92. "OSPF": true,
  93. "OUI": true,
  94. "PAP": true,
  95. "PAT": true,
  96. "PC": true,
  97. "PIM": true,
  98. "PCM": true,
  99. "PDU": true,
  100. "POP3": true,
  101. "POTS": true,
  102. "PPP": true,
  103. "PPTP": true,
  104. "PTT": true,
  105. "PVST": true,
  106. "RAM": true,
  107. "RARP": true,
  108. "RFC": true,
  109. "RIP": true,
  110. "RLL": true,
  111. "ROM": true,
  112. "RSTP": true,
  113. "RTP": true,
  114. "RCP": true,
  115. "SDLC": true,
  116. "SFD": true,
  117. "SFP": true,
  118. "SLARP": true,
  119. "SLIP": true,
  120. "SMTP": true,
  121. "SNA": true,
  122. "SNAP": true,
  123. "SNMP": true,
  124. "SOF": true,
  125. "SRAM": true,
  126. "SSH": true,
  127. "SSID": true,
  128. "STP": true,
  129. "SYN": true,
  130. "TDM": true,
  131. "TFTP": true,
  132. "TIA": true,
  133. "TOFU": true,
  134. "UDP": true,
  135. "URL": true,
  136. "URI": true,
  137. "USB": true,
  138. "UTP": true,
  139. "VC": true,
  140. "VLAN": true,
  141. "VLSM": true,
  142. "VPN": true,
  143. "W3C": true,
  144. "WAN": true,
  145. "WEP": true,
  146. "WiFi": true,
  147. "WPA": true,
  148. "WWW": true,
  149. }