ExternalInstance.kt 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /******************************************************************************
  2. * *
  3. * Copyright (C) 2021 by nekohasekai <[email protected]> *
  4. * Copyright (C) 2021 by Max Lv <[email protected]> *
  5. * Copyright (C) 2021 by Mygod Studio <[email protected]> *
  6. * *
  7. * This program is free software: you can redistribute it and/or modify *
  8. * it under the terms of the GNU General Public License as published by *
  9. * the Free Software Foundation, either version 3 of the License, or *
  10. * (at your option) any later version. *
  11. * *
  12. * This program is distributed in the hope that it will be useful, *
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of *
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
  15. * GNU General Public License for more details. *
  16. * *
  17. * You should have received a copy of the GNU General Public License *
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>. *
  19. * *
  20. ******************************************************************************/
  21. package io.nekohasekai.sagernet.bg
  22. import io.nekohasekai.sagernet.bg.proto.V2RayInstance
  23. import io.nekohasekai.sagernet.database.ProxyEntity
  24. import io.nekohasekai.sagernet.fmt.buildCustomConfig
  25. import io.nekohasekai.sagernet.ktx.Logs
  26. class ExternalInstance(
  27. profile: ProxyEntity, val port: Int
  28. ) : V2RayInstance(profile) {
  29. override fun init() {
  30. super.init()
  31. Logs.d(config.config)
  32. pluginConfigs.forEach { (_, plugin) ->
  33. val (_, content) = plugin
  34. Logs.d(content)
  35. }
  36. }
  37. override fun buildConfig() {
  38. config = buildCustomConfig(profile, port)
  39. }
  40. }