1
0

config.go 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package xray
  2. import (
  3. "bytes"
  4. "x-ui/util/json_util"
  5. )
  6. type Config struct {
  7. LogConfig json_util.RawMessage `json:"log"`
  8. RouterConfig json_util.RawMessage `json:"routing"`
  9. DNSConfig json_util.RawMessage `json:"dns"`
  10. InboundConfigs []InboundConfig `json:"inbounds"`
  11. OutboundConfigs json_util.RawMessage `json:"outbounds"`
  12. Transport json_util.RawMessage `json:"transport"`
  13. Policy json_util.RawMessage `json:"policy"`
  14. API json_util.RawMessage `json:"api"`
  15. Stats json_util.RawMessage `json:"stats"`
  16. Reverse json_util.RawMessage `json:"reverse"`
  17. FakeDNS json_util.RawMessage `json:"fakedns"`
  18. Observatory json_util.RawMessage `json:"observatory"`
  19. BurstObservatory json_util.RawMessage `json:"burstObservatory"`
  20. }
  21. func (c *Config) Equals(other *Config) bool {
  22. if len(c.InboundConfigs) != len(other.InboundConfigs) {
  23. return false
  24. }
  25. for i, inbound := range c.InboundConfigs {
  26. if !inbound.Equals(&other.InboundConfigs[i]) {
  27. return false
  28. }
  29. }
  30. if !bytes.Equal(c.LogConfig, other.LogConfig) {
  31. return false
  32. }
  33. if !bytes.Equal(c.RouterConfig, other.RouterConfig) {
  34. return false
  35. }
  36. if !bytes.Equal(c.DNSConfig, other.DNSConfig) {
  37. return false
  38. }
  39. if !bytes.Equal(c.OutboundConfigs, other.OutboundConfigs) {
  40. return false
  41. }
  42. if !bytes.Equal(c.Transport, other.Transport) {
  43. return false
  44. }
  45. if !bytes.Equal(c.Policy, other.Policy) {
  46. return false
  47. }
  48. if !bytes.Equal(c.API, other.API) {
  49. return false
  50. }
  51. if !bytes.Equal(c.Stats, other.Stats) {
  52. return false
  53. }
  54. if !bytes.Equal(c.Reverse, other.Reverse) {
  55. return false
  56. }
  57. if !bytes.Equal(c.FakeDNS, other.FakeDNS) {
  58. return false
  59. }
  60. return true
  61. }