├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── ui ├── .gitkeep └── v2hreo │ ├── module.modulemap │ ├── v2hreo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── whoami.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── v2hreo.xcscheme │ └── xcuserdata │ │ └── whoami.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist │ └── v2hreo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── 闪电-128.png │ │ ├── 闪电-256.png │ │ ├── 闪电-257.png │ │ ├── 闪电-512.png │ │ └── 闪电.png │ ├── Contents.json │ └── v2hreo.imageset │ │ ├── Contents.json │ │ └── 闪电 (3).svg │ ├── Base.lproj │ └── Main.storyboard │ ├── EventMonitor.swift │ ├── Info.plist │ ├── PopoverViewController.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── V2rayssProxy.swift │ └── v2hreo.entitlements └── v2rayss ├── core ├── parser │ ├── parser.go │ └── parser_test.go ├── util │ ├── util.go │ └── util_test.go └── vmess │ ├── link.go │ ├── link_test.go │ ├── miniv2ray.go │ └── miniv2ray_distro.go ├── go.mod ├── go.sum ├── library └── library.go ├── v2rayss.go └── v2rayss_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | # Binaries for programs and plugins 2 | *.exe 3 | *.exe~ 4 | *.dll 5 | *.so 6 | *.dylib 7 | 8 | # Test binary, built with `go test -c` 9 | *.test 10 | 11 | # Output of the go coverage tool, specifically when used with LiteIDE 12 | *.out 13 | 14 | # Dependency directories (remove the comment below to include it) 15 | # vendor/ 16 | .vscode/ 17 | .sub 18 | .DS_Store 19 | 20 | libv2rayss.a 21 | libv2rayss.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: build/macos 2 | 3 | build/macos: 4 | cd v2rayss && CGO_ENABLED=1 go build --buildmode=c-archive -o libv2rayss.a library/library.go 5 | mv v2rayss/libv2rayss.h v2rayss/libv2rayss.a ui/v2hreo/ 6 | clean: 7 | rm ui/libv2rayss.* 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 |

v2hreo

3 | v2hreo 4 |
5 | 6 | Swift 联动 CGO 开发的 V2ray MacOS 菜单栏应用。 7 | 8 | --- 9 | 10 | 支持的功能: 11 | - **默认配置:** `socks://127.0.0.1:1080` 目前还不支持修改 12 | - **订阅地址:** `vmess://*` 或者 `http://*`(返回也的是`vmess://`) 13 | - **服务器选择:** 14 | - Load: 从订阅地址获取服务器列表 15 | - Ping: 获取连接服务器延迟 16 | - 下拉选择代理的服务器 17 | 18 | --- 19 | 20 | ## 预览 21 | 22 | ![](https://user-images.githubusercontent.com/26270009/125184897-0097a300-e254-11eb-973b-8970549c1a8f.png) 23 | 24 | ## Tips 25 | **自己创建项目时需要注意:** 26 | 1. 编译 go 代码:`CGO_ENABLED=1 go build --buildmode=c-archive -o libdemo.a demo.go` 27 | 2. 在 Swift 项目`$(SRCROOT)`目录下创建 `module.modulemap` 文件: 28 | ``` 29 | module Demo { 30 | header "libdemo.h" 31 | link "demo" 32 | export * 33 | } 34 | ``` 35 | 具体请查看[文档](https://clang.llvm.org/docs/Modules.html) 36 | 3. 为 Swift 项目设置 modulemap:在 Xcode 中将 `LIBRARY_SEARCH_PATHS` 和 `SWIFT_INCLUDE_PATHS` 的值修改为:`$(SRCROOT)`。 37 | 38 | ## Thx 39 | - https://youngdynasty.net/posts/writing-mac-apps-in-go/ 40 | - https://juejin.cn/post/6844904101877121037 41 | -------------------------------------------------------------------------------- /ui/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac0d3r/v2hreo/baafe8651b3bee43ccba1adb21ea8df94d5d3ae4/ui/.gitkeep -------------------------------------------------------------------------------- /ui/v2hreo/module.modulemap: -------------------------------------------------------------------------------- 1 | module V2rayss { 2 | header "libv2rayss.h" 3 | link "v2rayss" 4 | export * 5 | } 6 | -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 1E1968F026945F5400ED8B65 /* PopoverViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E1968EF26945F5400ED8B65 /* PopoverViewController.swift */; }; 11 | 1E1968F426946BC300ED8B65 /* EventMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E1968F326946BC300ED8B65 /* EventMonitor.swift */; }; 12 | 1E5B512026981B940096D4B4 /* V2rayssProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E5B511F26981B940096D4B4 /* V2rayssProxy.swift */; }; 13 | 1E8D74E4268F1303008AB945 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E8D74E3268F1303008AB945 /* AppDelegate.swift */; }; 14 | 1E8D74E8268F1303008AB945 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 1E8D74E7268F1303008AB945 /* Assets.xcassets */; }; 15 | 1E8D74EB268F1303008AB945 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 1E8D74EA268F1303008AB945 /* Preview Assets.xcassets */; }; 16 | 1E8D74EE268F1303008AB945 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 1E8D74EC268F1303008AB945 /* Main.storyboard */; }; 17 | /* End PBXBuildFile section */ 18 | 19 | /* Begin PBXFileReference section */ 20 | 1E1968EF26945F5400ED8B65 /* PopoverViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PopoverViewController.swift; sourceTree = ""; }; 21 | 1E1968F326946BC300ED8B65 /* EventMonitor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EventMonitor.swift; sourceTree = ""; }; 22 | 1E5B511F26981B940096D4B4 /* V2rayssProxy.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = V2rayssProxy.swift; sourceTree = ""; }; 23 | 1E8D74E0268F1303008AB945 /* v2hreo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = v2hreo.app; sourceTree = BUILT_PRODUCTS_DIR; }; 24 | 1E8D74E3268F1303008AB945 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 25 | 1E8D74E7268F1303008AB945 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 26 | 1E8D74EA268F1303008AB945 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; 27 | 1E8D74ED268F1303008AB945 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 28 | 1E8D74EF268F1303008AB945 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 29 | 1E8D74F0268F1303008AB945 /* v2hreo.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = v2hreo.entitlements; sourceTree = ""; }; 30 | /* End PBXFileReference section */ 31 | 32 | /* Begin PBXFrameworksBuildPhase section */ 33 | 1E8D74DD268F1303008AB945 /* Frameworks */ = { 34 | isa = PBXFrameworksBuildPhase; 35 | buildActionMask = 2147483647; 36 | files = ( 37 | ); 38 | runOnlyForDeploymentPostprocessing = 0; 39 | }; 40 | /* End PBXFrameworksBuildPhase section */ 41 | 42 | /* Begin PBXGroup section */ 43 | 1E8D74D7268F1303008AB945 = { 44 | isa = PBXGroup; 45 | children = ( 46 | 1E8D74E2268F1303008AB945 /* v2hreo */, 47 | 1E8D74E1268F1303008AB945 /* Products */, 48 | ); 49 | sourceTree = ""; 50 | }; 51 | 1E8D74E1268F1303008AB945 /* Products */ = { 52 | isa = PBXGroup; 53 | children = ( 54 | 1E8D74E0268F1303008AB945 /* v2hreo.app */, 55 | ); 56 | name = Products; 57 | sourceTree = ""; 58 | }; 59 | 1E8D74E2268F1303008AB945 /* v2hreo */ = { 60 | isa = PBXGroup; 61 | children = ( 62 | 1E8D74E3268F1303008AB945 /* AppDelegate.swift */, 63 | 1E1968EF26945F5400ED8B65 /* PopoverViewController.swift */, 64 | 1E1968F326946BC300ED8B65 /* EventMonitor.swift */, 65 | 1E5B511F26981B940096D4B4 /* V2rayssProxy.swift */, 66 | 1E8D74E7268F1303008AB945 /* Assets.xcassets */, 67 | 1E8D74EC268F1303008AB945 /* Main.storyboard */, 68 | 1E8D74EF268F1303008AB945 /* Info.plist */, 69 | 1E8D74F0268F1303008AB945 /* v2hreo.entitlements */, 70 | 1E8D74E9268F1303008AB945 /* Preview Content */, 71 | ); 72 | path = v2hreo; 73 | sourceTree = ""; 74 | }; 75 | 1E8D74E9268F1303008AB945 /* Preview Content */ = { 76 | isa = PBXGroup; 77 | children = ( 78 | 1E8D74EA268F1303008AB945 /* Preview Assets.xcassets */, 79 | ); 80 | path = "Preview Content"; 81 | sourceTree = ""; 82 | }; 83 | /* End PBXGroup section */ 84 | 85 | /* Begin PBXNativeTarget section */ 86 | 1E8D74DF268F1303008AB945 /* v2hreo */ = { 87 | isa = PBXNativeTarget; 88 | buildConfigurationList = 1E8D74F3268F1303008AB945 /* Build configuration list for PBXNativeTarget "v2hreo" */; 89 | buildPhases = ( 90 | 1E8D74DC268F1303008AB945 /* Sources */, 91 | 1E8D74DD268F1303008AB945 /* Frameworks */, 92 | 1E8D74DE268F1303008AB945 /* Resources */, 93 | ); 94 | buildRules = ( 95 | ); 96 | dependencies = ( 97 | ); 98 | name = v2hreo; 99 | productName = v2hreo; 100 | productReference = 1E8D74E0268F1303008AB945 /* v2hreo.app */; 101 | productType = "com.apple.product-type.application"; 102 | }; 103 | /* End PBXNativeTarget section */ 104 | 105 | /* Begin PBXProject section */ 106 | 1E8D74D8268F1303008AB945 /* Project object */ = { 107 | isa = PBXProject; 108 | attributes = { 109 | LastSwiftUpdateCheck = 1240; 110 | LastUpgradeCheck = 1240; 111 | TargetAttributes = { 112 | 1E8D74DF268F1303008AB945 = { 113 | CreatedOnToolsVersion = 12.4; 114 | }; 115 | }; 116 | }; 117 | buildConfigurationList = 1E8D74DB268F1303008AB945 /* Build configuration list for PBXProject "v2hreo" */; 118 | compatibilityVersion = "Xcode 9.3"; 119 | developmentRegion = en; 120 | hasScannedForEncodings = 0; 121 | knownRegions = ( 122 | en, 123 | Base, 124 | ); 125 | mainGroup = 1E8D74D7268F1303008AB945; 126 | productRefGroup = 1E8D74E1268F1303008AB945 /* Products */; 127 | projectDirPath = ""; 128 | projectRoot = ""; 129 | targets = ( 130 | 1E8D74DF268F1303008AB945 /* v2hreo */, 131 | ); 132 | }; 133 | /* End PBXProject section */ 134 | 135 | /* Begin PBXResourcesBuildPhase section */ 136 | 1E8D74DE268F1303008AB945 /* Resources */ = { 137 | isa = PBXResourcesBuildPhase; 138 | buildActionMask = 2147483647; 139 | files = ( 140 | 1E8D74EE268F1303008AB945 /* Main.storyboard in Resources */, 141 | 1E8D74EB268F1303008AB945 /* Preview Assets.xcassets in Resources */, 142 | 1E8D74E8268F1303008AB945 /* Assets.xcassets in Resources */, 143 | ); 144 | runOnlyForDeploymentPostprocessing = 0; 145 | }; 146 | /* End PBXResourcesBuildPhase section */ 147 | 148 | /* Begin PBXSourcesBuildPhase section */ 149 | 1E8D74DC268F1303008AB945 /* Sources */ = { 150 | isa = PBXSourcesBuildPhase; 151 | buildActionMask = 2147483647; 152 | files = ( 153 | 1E1968F426946BC300ED8B65 /* EventMonitor.swift in Sources */, 154 | 1E5B512026981B940096D4B4 /* V2rayssProxy.swift in Sources */, 155 | 1E1968F026945F5400ED8B65 /* PopoverViewController.swift in Sources */, 156 | 1E8D74E4268F1303008AB945 /* AppDelegate.swift in Sources */, 157 | ); 158 | runOnlyForDeploymentPostprocessing = 0; 159 | }; 160 | /* End PBXSourcesBuildPhase section */ 161 | 162 | /* Begin PBXVariantGroup section */ 163 | 1E8D74EC268F1303008AB945 /* Main.storyboard */ = { 164 | isa = PBXVariantGroup; 165 | children = ( 166 | 1E8D74ED268F1303008AB945 /* Base */, 167 | ); 168 | name = Main.storyboard; 169 | sourceTree = ""; 170 | }; 171 | /* End PBXVariantGroup section */ 172 | 173 | /* Begin XCBuildConfiguration section */ 174 | 1E8D74F1268F1303008AB945 /* Debug */ = { 175 | isa = XCBuildConfiguration; 176 | buildSettings = { 177 | ALWAYS_SEARCH_USER_PATHS = NO; 178 | CLANG_ANALYZER_NONNULL = YES; 179 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 180 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 181 | CLANG_CXX_LIBRARY = "libc++"; 182 | CLANG_ENABLE_MODULES = YES; 183 | CLANG_ENABLE_OBJC_ARC = YES; 184 | CLANG_ENABLE_OBJC_WEAK = YES; 185 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 186 | CLANG_WARN_BOOL_CONVERSION = YES; 187 | CLANG_WARN_COMMA = YES; 188 | CLANG_WARN_CONSTANT_CONVERSION = YES; 189 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 190 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 191 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 192 | CLANG_WARN_EMPTY_BODY = YES; 193 | CLANG_WARN_ENUM_CONVERSION = YES; 194 | CLANG_WARN_INFINITE_RECURSION = YES; 195 | CLANG_WARN_INT_CONVERSION = YES; 196 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 197 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 198 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 199 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 200 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 201 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 202 | CLANG_WARN_STRICT_PROTOTYPES = YES; 203 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 204 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 205 | CLANG_WARN_UNREACHABLE_CODE = YES; 206 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 207 | COPY_PHASE_STRIP = NO; 208 | DEBUG_INFORMATION_FORMAT = dwarf; 209 | ENABLE_STRICT_OBJC_MSGSEND = YES; 210 | ENABLE_TESTABILITY = YES; 211 | GCC_C_LANGUAGE_STANDARD = gnu11; 212 | GCC_DYNAMIC_NO_PIC = NO; 213 | GCC_NO_COMMON_BLOCKS = YES; 214 | GCC_OPTIMIZATION_LEVEL = 0; 215 | GCC_PREPROCESSOR_DEFINITIONS = ( 216 | "DEBUG=1", 217 | "$(inherited)", 218 | ); 219 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 220 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 221 | GCC_WARN_UNDECLARED_SELECTOR = YES; 222 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 223 | GCC_WARN_UNUSED_FUNCTION = YES; 224 | GCC_WARN_UNUSED_VARIABLE = YES; 225 | MACOSX_DEPLOYMENT_TARGET = 10.15; 226 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 227 | MTL_FAST_MATH = YES; 228 | ONLY_ACTIVE_ARCH = YES; 229 | SDKROOT = macosx; 230 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 231 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 232 | }; 233 | name = Debug; 234 | }; 235 | 1E8D74F2268F1303008AB945 /* Release */ = { 236 | isa = XCBuildConfiguration; 237 | buildSettings = { 238 | ALWAYS_SEARCH_USER_PATHS = NO; 239 | CLANG_ANALYZER_NONNULL = YES; 240 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 241 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 242 | CLANG_CXX_LIBRARY = "libc++"; 243 | CLANG_ENABLE_MODULES = YES; 244 | CLANG_ENABLE_OBJC_ARC = YES; 245 | CLANG_ENABLE_OBJC_WEAK = YES; 246 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 247 | CLANG_WARN_BOOL_CONVERSION = YES; 248 | CLANG_WARN_COMMA = YES; 249 | CLANG_WARN_CONSTANT_CONVERSION = YES; 250 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 251 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 252 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 253 | CLANG_WARN_EMPTY_BODY = YES; 254 | CLANG_WARN_ENUM_CONVERSION = YES; 255 | CLANG_WARN_INFINITE_RECURSION = YES; 256 | CLANG_WARN_INT_CONVERSION = YES; 257 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 258 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 259 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 260 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 261 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 262 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 263 | CLANG_WARN_STRICT_PROTOTYPES = YES; 264 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 265 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 266 | CLANG_WARN_UNREACHABLE_CODE = YES; 267 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 268 | COPY_PHASE_STRIP = NO; 269 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 270 | ENABLE_NS_ASSERTIONS = NO; 271 | ENABLE_STRICT_OBJC_MSGSEND = YES; 272 | GCC_C_LANGUAGE_STANDARD = gnu11; 273 | GCC_NO_COMMON_BLOCKS = YES; 274 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 275 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 276 | GCC_WARN_UNDECLARED_SELECTOR = YES; 277 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 278 | GCC_WARN_UNUSED_FUNCTION = YES; 279 | GCC_WARN_UNUSED_VARIABLE = YES; 280 | MACOSX_DEPLOYMENT_TARGET = 10.15; 281 | MTL_ENABLE_DEBUG_INFO = NO; 282 | MTL_FAST_MATH = YES; 283 | SDKROOT = macosx; 284 | SWIFT_COMPILATION_MODE = wholemodule; 285 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 286 | }; 287 | name = Release; 288 | }; 289 | 1E8D74F4268F1303008AB945 /* Debug */ = { 290 | isa = XCBuildConfiguration; 291 | buildSettings = { 292 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 293 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 294 | CODE_SIGN_ENTITLEMENTS = v2hreo/v2hreo.entitlements; 295 | CODE_SIGN_STYLE = Automatic; 296 | COMBINE_HIDPI_IMAGES = YES; 297 | DEVELOPMENT_ASSET_PATHS = "\"v2hreo/Preview Content\""; 298 | ENABLE_PREVIEWS = YES; 299 | INFOPLIST_FILE = v2hreo/Info.plist; 300 | LD_RUNPATH_SEARCH_PATHS = ( 301 | "$(inherited)", 302 | "@executable_path/../Frameworks", 303 | ); 304 | LIBRARY_SEARCH_PATHS = "$(SRCROOT)"; 305 | MACOSX_DEPLOYMENT_TARGET = 10.15; 306 | PRODUCT_BUNDLE_IDENTIFIER = whomai.buzz.v2hreo; 307 | PRODUCT_NAME = "$(TARGET_NAME)"; 308 | SWIFT_INCLUDE_PATHS = "$(SRCROOT)"; 309 | SWIFT_VERSION = 5.0; 310 | }; 311 | name = Debug; 312 | }; 313 | 1E8D74F5268F1303008AB945 /* Release */ = { 314 | isa = XCBuildConfiguration; 315 | buildSettings = { 316 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 317 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 318 | CODE_SIGN_ENTITLEMENTS = v2hreo/v2hreo.entitlements; 319 | CODE_SIGN_STYLE = Automatic; 320 | COMBINE_HIDPI_IMAGES = YES; 321 | DEVELOPMENT_ASSET_PATHS = "\"v2hreo/Preview Content\""; 322 | ENABLE_PREVIEWS = YES; 323 | INFOPLIST_FILE = v2hreo/Info.plist; 324 | LD_RUNPATH_SEARCH_PATHS = ( 325 | "$(inherited)", 326 | "@executable_path/../Frameworks", 327 | ); 328 | LIBRARY_SEARCH_PATHS = "$(SRCROOT)"; 329 | MACOSX_DEPLOYMENT_TARGET = 10.15; 330 | ONLY_ACTIVE_ARCH = YES; 331 | PRODUCT_BUNDLE_IDENTIFIER = whomai.buzz.v2hreo; 332 | PRODUCT_NAME = "$(TARGET_NAME)"; 333 | SWIFT_INCLUDE_PATHS = "$(SRCROOT)"; 334 | SWIFT_VERSION = 5.0; 335 | }; 336 | name = Release; 337 | }; 338 | /* End XCBuildConfiguration section */ 339 | 340 | /* Begin XCConfigurationList section */ 341 | 1E8D74DB268F1303008AB945 /* Build configuration list for PBXProject "v2hreo" */ = { 342 | isa = XCConfigurationList; 343 | buildConfigurations = ( 344 | 1E8D74F1268F1303008AB945 /* Debug */, 345 | 1E8D74F2268F1303008AB945 /* Release */, 346 | ); 347 | defaultConfigurationIsVisible = 0; 348 | defaultConfigurationName = Release; 349 | }; 350 | 1E8D74F3268F1303008AB945 /* Build configuration list for PBXNativeTarget "v2hreo" */ = { 351 | isa = XCConfigurationList; 352 | buildConfigurations = ( 353 | 1E8D74F4268F1303008AB945 /* Debug */, 354 | 1E8D74F5268F1303008AB945 /* Release */, 355 | ); 356 | defaultConfigurationIsVisible = 0; 357 | defaultConfigurationName = Release; 358 | }; 359 | /* End XCConfigurationList section */ 360 | }; 361 | rootObject = 1E8D74D8268F1303008AB945 /* Project object */; 362 | } 363 | -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo.xcodeproj/project.xcworkspace/xcuserdata/whoami.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac0d3r/v2hreo/baafe8651b3bee43ccba1adb21ea8df94d5d3ae4/ui/v2hreo/v2hreo.xcodeproj/project.xcworkspace/xcuserdata/whoami.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo.xcodeproj/xcshareddata/xcschemes/v2hreo.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 43 | 45 | 51 | 52 | 53 | 54 | 60 | 62 | 68 | 69 | 70 | 71 | 73 | 74 | 77 | 78 | 79 | -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo.xcodeproj/xcuserdata/whoami.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo.xcodeproj/xcuserdata/whoami.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | v2hreo.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | 1E8D74DF268F1303008AB945 16 | 17 | primary 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // v2hreo 4 | // 5 | // Created by whoami on 2021/7/2. 6 | // 7 | 8 | import Cocoa 9 | import SwiftUI 10 | 11 | @main 12 | class AppDelegate: NSObject, NSApplicationDelegate { 13 | // 事件监控 14 | var eventMonitor: EventMonitor? 15 | // 状态栏 16 | let statusItem = NSStatusBar.system.statusItem(withLength: NSStatusItem.squareLength) 17 | // 控制Popover状态 18 | let popover = NSPopover() 19 | // user 数据 20 | let defaults = UserDefaults.standard 21 | @objc func togglePopover(_ sender: AnyObject) { 22 | if popover.isShown { 23 | closePopover(sender) 24 | } else { 25 | showPopover(sender) 26 | } 27 | } 28 | // 显示Popover 29 | @objc func showPopover(_ sender: AnyObject) { 30 | if let button = statusItem.button { 31 | popover.show(relativeTo: button.bounds, of: button, preferredEdge: NSRectEdge.minY) 32 | } 33 | eventMonitor?.start() 34 | } 35 | // 隐藏Popover 36 | @objc func closePopover(_ sender: AnyObject) { 37 | popover.performClose(sender) 38 | eventMonitor?.stop() 39 | } 40 | 41 | func applicationDidFinishLaunching(_ aNotification: Notification) { 42 | eventMonitor = EventMonitor(mask: [.leftMouseDown]) { [weak self] event in 43 | if let strongSelf = self, strongSelf.popover.isShown { 44 | strongSelf.closePopover(event!) 45 | } 46 | } 47 | if let button = statusItem.button { 48 | button.image = NSImage(named: "v2hreo") 49 | button.action = #selector(togglePopover(_:)) 50 | } 51 | popover.contentViewController = PopoverViewController.freshController() 52 | //init v2rayss app 53 | if !printAppErrWithCondition(err: newApp()){ 54 | // set subaddr 55 | let subaddr = defaults.string(forKey: "subaddr") 56 | if subaddr != nil{ 57 | printAppErr(err: appSetSubAddr(addr: subaddr!)) 58 | } 59 | } 60 | } 61 | 62 | func applicationWillTerminate(_ aNotification: Notification) { 63 | //close v2rayss app 64 | if appRunning(){ 65 | printAppErr(err: appClose()) 66 | } 67 | // save v2rayss subaddr 68 | let conf = appConfInfo() 69 | if conf.subaddr != ""{ 70 | defaults.set(conf.subaddr, forKey: "subaddr") 71 | } 72 | } 73 | } 74 | 75 | 76 | -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "mac", 5 | "scale" : "1x", 6 | "size" : "16x16" 7 | }, 8 | { 9 | "idiom" : "mac", 10 | "scale" : "2x", 11 | "size" : "16x16" 12 | }, 13 | { 14 | "idiom" : "mac", 15 | "scale" : "1x", 16 | "size" : "32x32" 17 | }, 18 | { 19 | "filename" : "闪电.png", 20 | "idiom" : "mac", 21 | "scale" : "2x", 22 | "size" : "32x32" 23 | }, 24 | { 25 | "filename" : "闪电-128.png", 26 | "idiom" : "mac", 27 | "scale" : "1x", 28 | "size" : "128x128" 29 | }, 30 | { 31 | "filename" : "闪电-256.png", 32 | "idiom" : "mac", 33 | "scale" : "2x", 34 | "size" : "128x128" 35 | }, 36 | { 37 | "filename" : "闪电-257.png", 38 | "idiom" : "mac", 39 | "scale" : "1x", 40 | "size" : "256x256" 41 | }, 42 | { 43 | "filename" : "闪电-512.png", 44 | "idiom" : "mac", 45 | "scale" : "2x", 46 | "size" : "256x256" 47 | }, 48 | { 49 | "idiom" : "mac", 50 | "scale" : "1x", 51 | "size" : "512x512" 52 | }, 53 | { 54 | "idiom" : "mac", 55 | "scale" : "2x", 56 | "size" : "512x512" 57 | } 58 | ], 59 | "info" : { 60 | "author" : "xcode", 61 | "version" : 1 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo/Assets.xcassets/AppIcon.appiconset/闪电-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac0d3r/v2hreo/baafe8651b3bee43ccba1adb21ea8df94d5d3ae4/ui/v2hreo/v2hreo/Assets.xcassets/AppIcon.appiconset/闪电-128.png -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo/Assets.xcassets/AppIcon.appiconset/闪电-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac0d3r/v2hreo/baafe8651b3bee43ccba1adb21ea8df94d5d3ae4/ui/v2hreo/v2hreo/Assets.xcassets/AppIcon.appiconset/闪电-256.png -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo/Assets.xcassets/AppIcon.appiconset/闪电-257.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac0d3r/v2hreo/baafe8651b3bee43ccba1adb21ea8df94d5d3ae4/ui/v2hreo/v2hreo/Assets.xcassets/AppIcon.appiconset/闪电-257.png -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo/Assets.xcassets/AppIcon.appiconset/闪电-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac0d3r/v2hreo/baafe8651b3bee43ccba1adb21ea8df94d5d3ae4/ui/v2hreo/v2hreo/Assets.xcassets/AppIcon.appiconset/闪电-512.png -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo/Assets.xcassets/AppIcon.appiconset/闪电.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ac0d3r/v2hreo/baafe8651b3bee43ccba1adb21ea8df94d5d3ae4/ui/v2hreo/v2hreo/Assets.xcassets/AppIcon.appiconset/闪电.png -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo/Assets.xcassets/v2hreo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "闪电 (3).svg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | }, 21 | "properties" : { 22 | "template-rendering-intent" : "template" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo/Assets.xcassets/v2hreo.imageset/闪电 (3).svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | 527 | 528 | 529 | 530 | Default 531 | 532 | 533 | 534 | 535 | 536 | 537 | Left to Right 538 | 539 | 540 | 541 | 542 | 543 | 544 | Right to Left 545 | 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | Default 556 | 557 | 558 | 559 | 560 | 561 | 562 | Left to Right 563 | 564 | 565 | 566 | 567 | 568 | 569 | Right to Left 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | 626 | 627 | 628 | 629 | 630 | 631 | 632 | 633 | 634 | 635 | 636 | 637 | 638 | 639 | 640 | 641 | 642 | 643 | 644 | 645 | 646 | 647 | 648 | 649 | 650 | 651 | 652 | 653 | 654 | 655 | 656 | 657 | 658 | 659 | 660 | 661 | 662 | 663 | 664 | 665 | 666 | 667 | 668 | 669 | 670 | 671 | 672 | 673 | 674 | 675 | 676 | 677 | 678 | 679 | 680 | 681 | 682 | 683 | 684 | 685 | 686 | 687 | 688 | 689 | 690 | 691 | 692 | 693 | 694 | 695 | 696 | 697 | 698 | 699 | 700 | 701 | 702 | 703 | 704 | 705 | 706 | 707 | 708 | 709 | 710 | 711 | 712 | 713 | 714 | 715 | 716 | 717 | 718 | 719 | 720 | 721 | 722 | 723 | 724 | 725 | 726 | 727 | 728 | 729 | 730 | 731 | 732 | 733 | 734 | 735 | 736 | 737 | 738 | 739 | 740 | 741 | 742 | 743 | 744 | 745 | 746 | 747 | 748 | 749 | 750 | 751 | 752 | 753 | 754 | 755 | 756 | 757 | 758 | 759 | 760 | 761 | 762 | 763 | 764 | 765 | 766 | 767 | 768 | 769 | 770 | 771 | 772 | 773 | 774 | 775 | 776 | 777 | 778 | 789 | 790 | 791 | 792 | 793 | 794 | 795 | 796 | 797 | 798 | 799 | 800 | 801 | 802 | 803 | 804 | 805 | 806 | 807 | 808 | 809 | 810 | 811 | 812 | 813 | 824 | 835 | 846 | 847 | 848 | 849 | 850 | 851 | 852 | 853 | 854 | 855 | 856 | 857 | 858 | 859 | 860 | 861 | 862 | 863 | 864 | 865 | 866 | -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo/EventMonitor.swift: -------------------------------------------------------------------------------- 1 | // 2 | // EventMonitor.swift 3 | // v2hreo 4 | // 5 | // Created by whoami on 2021/7/6. 6 | // 7 | 8 | import Cocoa 9 | 10 | public class EventMonitor { 11 | private var monitor: Any? 12 | private let mask: NSEvent.EventTypeMask 13 | private let handler: (NSEvent?) -> Void 14 | 15 | public init(mask: NSEvent.EventTypeMask, handler: @escaping (NSEvent?) -> Void) { 16 | self.mask = mask 17 | self.handler = handler 18 | } 19 | 20 | deinit { 21 | stop() 22 | } 23 | 24 | public func start() { //开启监视器 25 | monitor = NSEvent.addGlobalMonitorForEvents(matching: mask, handler: handler) 26 | } 27 | 28 | public func stop() { //关闭监视器 29 | if monitor != nil { 30 | NSEvent.removeMonitor(monitor!) 31 | monitor = nil 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | $(PRODUCT_BUNDLE_PACKAGE_TYPE) 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | LSMinimumSystemVersion 22 | $(MACOSX_DEPLOYMENT_TARGET) 23 | LSUIElement 24 | 25 | NSMainStoryboardFile 26 | Main 27 | NSPrincipalClass 28 | NSApplication 29 | 30 | 31 | -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo/PopoverViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // PopoverViewController.swift 3 | // v2hreo 4 | // 5 | // Created by whoami on 2021/7/6. 6 | // 7 | 8 | import Cocoa 9 | 10 | class PopoverViewController: NSViewController { 11 | @IBOutlet weak var v2appConfState: NSSwitch! 12 | 13 | @IBOutlet weak var v2appConfAddr: NSTextField! 14 | @IBOutlet weak var v2appConfPort: NSTextField! 15 | @IBOutlet weak var v2appConfProto: NSTextField! 16 | @IBOutlet weak var v2appConfSubAddr: NSTextField! 17 | 18 | @IBOutlet weak var v2appServerSelect: NSComboBox! 19 | 20 | var conf: Conf = Conf(addr:"", port:0, proto:"", subaddr:"") 21 | var links: [String] = [] 22 | var select: Int = -1 23 | 24 | override func viewDidLoad() { 25 | super.viewDidLoad() 26 | v2appConfAddr.isEditable = false 27 | v2appConfPort.isEditable = false 28 | v2appConfProto.isEditable = false 29 | v2appConfSubAddr.placeholderString = "输入订阅地址" 30 | 31 | v2appConfState.state = NSControl.StateValue.off 32 | if appRunning(){ 33 | v2appConfState.state = NSControl.StateValue.on 34 | } 35 | 36 | conf = appConfInfo() 37 | v2appConfAddr.stringValue = conf.addr 38 | v2appConfPort.stringValue = String(conf.port) 39 | v2appConfProto.stringValue = conf.proto 40 | v2appConfSubAddr.stringValue = conf.subaddr 41 | 42 | if conf.subaddr != ""{ 43 | let err = appLoadSubAddr() 44 | if err != "" { 45 | print(err) 46 | }else{ 47 | renderLinks() 48 | } 49 | } 50 | } 51 | 52 | @IBAction func v2appSwitch(_ sender: Any) { 53 | if v2appConfState.state == NSControl.StateValue.on && !appRunning(){ 54 | printAppErr(err: appStart()) 55 | } 56 | if v2appConfState.state == NSControl.StateValue.off && appRunning(){ 57 | printAppErr(err: appClose()) 58 | } 59 | } 60 | 61 | @IBAction func saveConf(_ sender: Any) { 62 | if conf.subaddr != v2appConfSubAddr.stringValue{ 63 | conf.subaddr = v2appConfSubAddr.stringValue 64 | if !printAppErrWithCondition(err: appSetSubAddr(addr: conf.subaddr)) && !printAppErrWithCondition(err: appLoadSubAddr()){ 65 | renderLinks() 66 | } 67 | } 68 | } 69 | 70 | @IBAction func selectServer(_ sender: Any) { 71 | if v2appServerSelect.indexOfSelectedItem >= 0 && links.count > 0 { 72 | if v2appServerSelect.indexOfSelectedItem != select{ 73 | if !printAppErrWithCondition(err: appSelectLink(index: v2appServerSelect.indexOfSelectedItem)){ 74 | select = v2appServerSelect.indexOfSelectedItem 75 | } 76 | } 77 | }else{ 78 | v2appServerSelect.selectItem(at:-1) 79 | } 80 | } 81 | 82 | @IBAction func v2appLoad(_ sender: Any) { 83 | if !printAppErrWithCondition(err: appLoadSubAddr()){ 84 | renderLinks() 85 | } 86 | } 87 | 88 | @IBAction func pingServer(_ sender: Any) { 89 | if conf.subaddr != ""{ 90 | if links.count <= 0 { 91 | printAppErr(err: appLoadSubAddr()) 92 | } 93 | printAppErr(err: appPing()) 94 | renderLinks() 95 | } 96 | } 97 | 98 | @IBAction func qutiBtn(_ sender: Any) { 99 | NSApplication.shared.terminate(self) 100 | } 101 | 102 | func renderLinks(){ 103 | links = appListHosts() 104 | v2appServerSelect.removeAllItems() 105 | v2appServerSelect.addItems(withObjectValues: links) 106 | } 107 | } 108 | 109 | extension PopoverViewController { 110 | static func freshController() -> PopoverViewController { 111 | // 获取对Main.storyboard的引用 112 | let storyboard = NSStoryboard(name: NSStoryboard.Name("Main"), bundle: nil) 113 | // 为PopoverViewController创建一个标识符 114 | let identifier = NSStoryboard.SceneIdentifier("PopoverViewController") 115 | // 实例化PopoverViewController并返回 116 | guard let viewcontroller = storyboard.instantiateController(withIdentifier: identifier) as? PopoverViewController else { 117 | fatalError("Something Wrong with Main.storyboard") 118 | } 119 | return viewcontroller 120 | } 121 | } 122 | 123 | -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo/V2rayssProxy.swift: -------------------------------------------------------------------------------- 1 | // 2 | // V2rayssProxy.swift 3 | // v2hreo 4 | // 5 | // Created by whoami on 2021/7/9. 6 | // 7 | 8 | import Foundation 9 | import V2rayss 10 | 11 | 12 | struct Conf: Codable{ 13 | let addr: String 14 | let port: Int 15 | let proto: String 16 | var subaddr: String 17 | } 18 | 19 | func newApp() -> String 20 | { 21 | return String(cString: V2rayss.newApp()) 22 | } 23 | 24 | func appRunning() -> Bool 25 | { 26 | let v = V2rayss.appRunning() 27 | if v == 1{ 28 | return true 29 | } 30 | return false 31 | } 32 | 33 | func appConfInfo() -> Conf 34 | { 35 | let jsonString = String(cString: V2rayss.appConfInfo()) 36 | if jsonString.contains("err: "){ 37 | print(jsonString) 38 | return Conf(addr: "", port: 0, proto: "", subaddr: "") 39 | } 40 | let jsonData = jsonString.data(using: .utf8)! 41 | do { 42 | let conf = try JSONDecoder().decode(Conf.self, from: jsonData) 43 | return conf 44 | }catch{ 45 | return Conf(addr: "", port: 0, proto: "", subaddr: "") 46 | } 47 | } 48 | 49 | func appLoadSubAddr() -> String{ 50 | return String(cString: V2rayss.appLoadSubAddr()) 51 | } 52 | 53 | func appSetSubAddr(addr: String) -> String{ 54 | let addrChar = UnsafeMutablePointer(mutating: addr.cString(using: .utf8)) 55 | if addrChar != nil{ 56 | return String(cString: V2rayss.appSetSubAddr(addrChar)) 57 | } 58 | return "err: String -> char*" 59 | } 60 | 61 | func appPing() -> String{ 62 | return String(cString: V2rayss.appPing()) 63 | } 64 | 65 | func appListHosts() -> [String]{ 66 | let jsonString = String(cString: V2rayss.appListHosts()) 67 | if jsonString.contains("err: "){ 68 | print(jsonString) 69 | return [String]() 70 | } 71 | let jsonData = jsonString.data(using: .utf8)! 72 | do { 73 | let links = try JSONDecoder().decode([String].self, from: jsonData) 74 | return links 75 | }catch{ 76 | return [String]() 77 | } 78 | } 79 | 80 | func appSelectLink(index: Int) -> String{ 81 | return String(cString: V2rayss.appSelectLink(Int32(index))) 82 | } 83 | 84 | func appStart() -> String{ 85 | return String(cString: V2rayss.appStart()) 86 | } 87 | 88 | func appClose() -> String{ 89 | return String(cString: V2rayss.appClose()) 90 | } 91 | 92 | func printAppErrWithCondition(err: String) -> Bool { 93 | if err != ""{ 94 | print(err) 95 | return true 96 | } 97 | return false 98 | } 99 | 100 | func printAppErr(err: String) { 101 | if err != ""{ 102 | print(err) 103 | } 104 | } 105 | -------------------------------------------------------------------------------- /ui/v2hreo/v2hreo/v2hreo.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | com.apple.security.files.user-selected.read-only 8 | 9 | com.apple.security.network.client 10 | 11 | com.apple.security.network.server 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /v2rayss/core/parser/parser.go: -------------------------------------------------------------------------------- 1 | package parser 2 | 3 | import ( 4 | "encoding/json" 5 | "errors" 6 | "fmt" 7 | "io/ioutil" 8 | "net/http" 9 | "strings" 10 | 11 | "v2rayss/core/util" 12 | "v2rayss/core/vmess" 13 | ) 14 | 15 | const ( 16 | vmessProtocol = "vmess://" 17 | ) 18 | 19 | var ( 20 | ErrWrongProtocol = errors.New("wrong protocol") 21 | ) 22 | 23 | func Parse(addr string) ([]*vmess.Link, error) { 24 | var raw string = addr 25 | // 处理 http(s)?://xxx 的订阅地址 26 | if strings.HasPrefix(addr, "http") { 27 | var ( 28 | resp *http.Response 29 | body []byte 30 | err error 31 | ) 32 | if resp, err = http.Get(addr); err != nil { 33 | return nil, err 34 | } 35 | defer resp.Body.Close() 36 | if body, err = ioutil.ReadAll(resp.Body); err != nil { 37 | return nil, err 38 | } 39 | if raw, err = util.Base64Decode(string(body)); err != nil { 40 | return nil, err 41 | } 42 | } 43 | return ParseVmessURLs(raw), nil 44 | } 45 | 46 | func ParseVmessURLs(s string) []*vmess.Link { 47 | hosts := make([]*vmess.Link, 0, 4) 48 | for _, vmessURL := range util.StringSplit(s) { 49 | h, err := ParseVmessURL(vmessURL) 50 | if err == nil { 51 | hosts = append(hosts, h) 52 | } 53 | } 54 | return hosts 55 | } 56 | 57 | // ParseVmessURL 处理 vmess://{base64(info)} 58 | func ParseVmessURL(vmessURL string) (*vmess.Link, error) { 59 | if len(vmessURL) < len(vmessProtocol) { 60 | return nil, fmt.Errorf("wrong url:%s", vmessURL) 61 | } 62 | if !strings.HasPrefix(vmessURL, vmessProtocol) { 63 | return nil, ErrWrongProtocol 64 | } 65 | 66 | raw, err := util.Base64Decode(vmessURL[len(vmessProtocol):]) 67 | if err != nil { 68 | return nil, err 69 | } 70 | 71 | h := &vmess.Link{} 72 | err = json.Unmarshal([]byte(raw), h) 73 | return h, err 74 | } 75 | -------------------------------------------------------------------------------- /v2rayss/core/parser/parser_test.go: -------------------------------------------------------------------------------- 1 | package parser 2 | 3 | import "testing" 4 | 5 | func TestParse(t *testing.T) { 6 | links, err := Parse("https://xxx") 7 | if err != nil { 8 | t.Fatal(err) 9 | } 10 | 11 | for _, l := range links { 12 | t.Logf("%#v", l) 13 | t.Log(l.Ping(3, "https://cloudflare.com/cdn-cgi/trace")) 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /v2rayss/core/util/util.go: -------------------------------------------------------------------------------- 1 | package util 2 | 3 | import ( 4 | "encoding/base64" 5 | "strings" 6 | ) 7 | 8 | func Base64Encode(str string) string { 9 | return base64.StdEncoding.EncodeToString([]byte(str)) 10 | } 11 | 12 | func Base64Decode(data string) (string, error) { 13 | decodeBytes, err := base64.StdEncoding.DecodeString(data) 14 | if err != nil { 15 | return "", err 16 | } 17 | return string(decodeBytes), nil 18 | } 19 | 20 | var sep = map[rune]bool{ 21 | ' ': true, 22 | '\n': true, 23 | ',': true, 24 | ';': true, 25 | '\t': true, 26 | '\f': true, 27 | '\v': true, 28 | '\r': true, 29 | } 30 | 31 | func StringSplit(s string) []string { 32 | return strings.FieldsFunc(s, func(r rune) bool { 33 | return sep[r] 34 | }) 35 | } 36 | -------------------------------------------------------------------------------- /v2rayss/core/util/util_test.go: -------------------------------------------------------------------------------- 1 | package util 2 | 3 | import "testing" 4 | 5 | func TestBase64Encode(t *testing.T) { 6 | t.Log(Base64Encode("123123")) 7 | } 8 | func TestBase64Decode(t *testing.T) { 9 | t.Log(Base64Decode("MTIzMTIz")) 10 | } 11 | 12 | func TestStringSplit(t *testing.T) { 13 | t.Log(StringSplit("sdasd asds\n asdasd\t asdasdasd,dasdasd;")) 14 | } 15 | -------------------------------------------------------------------------------- /v2rayss/core/vmess/link.go: -------------------------------------------------------------------------------- 1 | // https://github.com/iochen/v2gen/blob/master/vmess/vmessping.go 2 | package vmess 3 | 4 | import ( 5 | "encoding/json" 6 | "time" 7 | 8 | "v2rayss/core/util" 9 | 10 | "v2ray.com/core" 11 | "v2ray.com/core/app/dispatcher" 12 | applog "v2ray.com/core/app/log" 13 | "v2ray.com/core/app/proxyman" 14 | commlog "v2ray.com/core/common/log" 15 | "v2ray.com/core/common/serial" 16 | ) 17 | 18 | var ( 19 | NoPing time.Duration = -1 20 | ) 21 | 22 | type Link struct { 23 | Ps string `json:"ps"` 24 | Host string `json:"host"` 25 | Add string `json:"add"` 26 | Port interface{} `json:"port"` 27 | ID string `json:"id"` 28 | Aid interface{} `json:"aid"` 29 | Net string `json:"net"` 30 | Type string `json:"type"` 31 | Path string `json:"path"` 32 | TLS string `json:"tls"` 33 | PingTime time.Duration `json:"-"` 34 | } 35 | 36 | func (lk *Link) Conf() string { 37 | if b, err := json.Marshal(lk); err != nil { 38 | return "" 39 | } else { 40 | return string(b) 41 | } 42 | } 43 | 44 | // String converts vmess link to vmess:// URL 45 | func (lk *Link) String() string { 46 | return "vmess://" + util.Base64Encode(lk.Conf()) 47 | } 48 | 49 | func (lk *Link) Ping(round int, dst string) (time.Duration, error) { 50 | server, err := startV2Ray(lk, false, true) 51 | if err != nil { 52 | return NoPing, err 53 | } 54 | defer server.Close() 55 | durationList := make([]time.Duration, 0, round) 56 | 57 | for count := 0; count < round; count++ { 58 | delay, err := measureDelay(server, 3*time.Second, dst) 59 | if err != nil { 60 | break 61 | } 62 | if delay > 0 { 63 | durationList = append(durationList, delay) 64 | } 65 | } 66 | 67 | if len(durationList) == 0 { 68 | return NoPing, nil 69 | } 70 | //take the average 71 | return delayAverage(durationList), nil 72 | } 73 | 74 | func delayAverage(list []time.Duration) time.Duration { 75 | delay := time.Duration(0) 76 | for _, d := range list { 77 | delay += d 78 | } 79 | u := uint64(time.Duration(int(delay) / len(list))) 80 | if u > uint64(time.Second) { 81 | u = u / 10000000 * 10000000 82 | } else { 83 | u = u / 100000 * 100000 84 | } 85 | return time.Duration(u) 86 | } 87 | 88 | func startV2Ray(lk *Link, verbose, usemux bool) (*core.Instance, error) { 89 | loglevel := commlog.Severity_Error 90 | if verbose { 91 | loglevel = commlog.Severity_Debug 92 | } 93 | 94 | out, err := Vmess2Outbound(lk, usemux) 95 | if err != nil { 96 | return nil, err 97 | } 98 | config := &core.Config{ 99 | App: []*serial.TypedMessage{ 100 | serial.ToTypedMessage(&applog.Config{ 101 | ErrorLogType: applog.LogType_Console, 102 | ErrorLogLevel: loglevel, 103 | }), 104 | serial.ToTypedMessage(&dispatcher.Config{}), 105 | serial.ToTypedMessage(&proxyman.InboundConfig{}), 106 | serial.ToTypedMessage(&proxyman.OutboundConfig{}), 107 | }, 108 | Outbound: []*core.OutboundHandlerConfig{out}, 109 | } 110 | server, err := core.New(config) 111 | if err != nil { 112 | return nil, err 113 | } 114 | 115 | return server, nil 116 | } 117 | -------------------------------------------------------------------------------- /v2rayss/core/vmess/link_test.go: -------------------------------------------------------------------------------- 1 | package vmess 2 | 3 | import ( 4 | "testing" 5 | ) 6 | 7 | func TestPing(t *testing.T) { 8 | link := Link{ 9 | Ps: "", 10 | Host: "", 11 | Add: "xx.x", 12 | Port: 724, 13 | ID: "", 14 | Aid: 0, 15 | Net: "ws", 16 | Type: "none", 17 | Path: "/v2ray", 18 | TLS: "", 19 | } 20 | ts, err := link.Ping(1, "https://") 21 | if err != nil { 22 | t.Fatal(err) 23 | } 24 | 25 | t.Log(ts.String()) 26 | t.Logf("%d", ts) 27 | } 28 | -------------------------------------------------------------------------------- /v2rayss/core/vmess/miniv2ray.go: -------------------------------------------------------------------------------- 1 | package vmess 2 | 3 | import ( 4 | "context" 5 | "encoding/json" 6 | "errors" 7 | "fmt" 8 | "net" 9 | "net/http" 10 | "strings" 11 | "time" 12 | 13 | "v2ray.com/core" 14 | v2net "v2ray.com/core/common/net" 15 | "v2ray.com/core/infra/conf" 16 | ) 17 | 18 | func Vmess2Inbound(addr, protocol string, port uint32) (*core.InboundHandlerConfig, error) { 19 | in := &conf.InboundDetourConfig{} 20 | v := conf.Address{} 21 | v.Address = v2net.ParseAddress(addr) 22 | in.Tag = "proxy" 23 | in.ListenOn = &v 24 | in.Protocol = protocol 25 | in.PortRange = &conf.PortRange{From: port, To: port} 26 | inset := json.RawMessage([]byte(`{"udp": true}`)) 27 | in.Settings = &inset 28 | return in.Build() 29 | } 30 | 31 | func Vmess2Outbound(link *Link, usemux bool) (*core.OutboundHandlerConfig, error) { 32 | out := &conf.OutboundDetourConfig{} 33 | out.Tag = "proxy" 34 | out.Protocol = "vmess" 35 | out.MuxSettings = &conf.MuxConfig{} 36 | if usemux { 37 | out.MuxSettings.Enabled = true 38 | out.MuxSettings.Concurrency = 8 39 | } 40 | 41 | p := conf.TransportProtocol(link.Net) 42 | s := &conf.StreamConfig{ 43 | Network: &p, 44 | Security: link.TLS, 45 | } 46 | 47 | switch link.Net { 48 | case "tcp": 49 | s.TCPSettings = &conf.TCPConfig{} 50 | if link.Type == "" || link.Type == "none" { 51 | s.TCPSettings.HeaderConfig = json.RawMessage([]byte(`{ "type": "none" }`)) 52 | } else { 53 | pathb, _ := json.Marshal(strings.Split(link.Path, ",")) 54 | hostb, _ := json.Marshal(strings.Split(link.Host, ",")) 55 | s.TCPSettings.HeaderConfig = json.RawMessage([]byte(fmt.Sprintf(` 56 | { 57 | "type": "http", 58 | "request": { 59 | "path": %s, 60 | "headers": { 61 | "Host": %s 62 | } 63 | } 64 | } 65 | `, string(pathb), string(hostb)))) 66 | } 67 | case "kcp": 68 | s.KCPSettings = &conf.KCPConfig{} 69 | s.KCPSettings.HeaderConfig = json.RawMessage([]byte(fmt.Sprintf(`{ "type": "%s" }`, link.Type))) 70 | case "ws": 71 | s.WSSettings = &conf.WebSocketConfig{} 72 | s.WSSettings.Path = link.Path 73 | s.WSSettings.Headers = map[string]string{ 74 | "Host": link.Host, 75 | } 76 | case "h2", "http": 77 | s.HTTPSettings = &conf.HTTPConfig{ 78 | Path: link.Path, 79 | } 80 | if link.Host != "" { 81 | h := conf.StringList(strings.Split(link.Host, ",")) 82 | s.HTTPSettings.Host = &h 83 | } 84 | } 85 | 86 | if link.TLS == "tls" { 87 | s.TLSSettings = &conf.TLSConfig{ 88 | Insecure: true, 89 | } 90 | if link.Host != "" { 91 | s.TLSSettings.ServerName = link.Host 92 | } 93 | } 94 | 95 | out.StreamSetting = s 96 | oset := json.RawMessage([]byte(fmt.Sprintf(`{ 97 | "vnext": [ 98 | { 99 | "address": "%s", 100 | "port": %v, 101 | "users": [ 102 | { 103 | "id": "%s", 104 | "alterId": %v, 105 | "security": "auto" 106 | } 107 | ] 108 | } 109 | ] 110 | }`, link.Add, link.Port, link.ID, link.Aid))) 111 | out.Settings = &oset 112 | return out.Build() 113 | } 114 | 115 | func measureDelay(inst *core.Instance, timeout time.Duration, dest string) (time.Duration, error) { 116 | start := time.Now() 117 | code, err := CoreHTTPRequest(inst, timeout, "GET", dest) 118 | if err != nil { 119 | return -1, err 120 | } 121 | if code >= 4e2 { 122 | return -1, fmt.Errorf("status incorrect (>= 400): %d", code) 123 | } 124 | return time.Since(start), nil 125 | } 126 | 127 | func CoreHTTPRequest(inst *core.Instance, timeout time.Duration, method, dest string) (int, error) { 128 | if inst == nil { 129 | return 0, errors.New("core instanc") 130 | } 131 | http.DefaultClient.Timeout = timeout 132 | tr := http.DefaultTransport.(*http.Transport) 133 | 134 | keepAlives := tr.DisableKeepAlives 135 | dialCtx := tr.DialContext 136 | defer func() { 137 | tr.DisableKeepAlives = keepAlives 138 | tr.DialContext = dialCtx 139 | http.DefaultClient.Timeout = 0 140 | }() 141 | tr.DisableKeepAlives = true 142 | tr.DialContext = func(ctx context.Context, network, addr string) (net.Conn, error) { 143 | dest, err := v2net.ParseDestination(fmt.Sprintf("%s:%s", network, addr)) 144 | if err != nil { 145 | return nil, err 146 | } 147 | return core.Dial(ctx, inst, dest) 148 | } 149 | 150 | req, err := http.NewRequest(method, dest, nil) 151 | if err != nil { 152 | return -1, err 153 | } 154 | resp, err := http.DefaultClient.Do(req) 155 | if err != nil { 156 | return -1, err 157 | } 158 | resp.Body.Close() 159 | return resp.StatusCode, nil 160 | } 161 | -------------------------------------------------------------------------------- /v2rayss/core/vmess/miniv2ray_distro.go: -------------------------------------------------------------------------------- 1 | package vmess 2 | 3 | import ( 4 | // The following are necessary as they register handlers in their init functions. 5 | // Required features. Can't remove unless there is replacements. 6 | _ "v2ray.com/core/app/dispatcher" 7 | _ "v2ray.com/core/app/proxyman/inbound" 8 | _ "v2ray.com/core/app/proxyman/outbound" 9 | 10 | // Default commander and all its services. This is an optional feature. 11 | // _ "v2ray.com/core/app/commander" 12 | // _ "v2ray.com/core/app/log/command" 13 | 14 | // _ "v2ray.com/core/app/proxyman/command" 15 | // _ "v2ray.com/core/app/stats/command" 16 | 17 | // Other optional features. 18 | // _ "v2ray.com/core/app/dns" 19 | // _ "v2ray.com/core/app/log" 20 | // _ "v2ray.com/core/app/policy" 21 | 22 | // _ "v2ray.com/core/app/reverse" 23 | // _ "v2ray.com/core/app/router" 24 | // _ "v2ray.com/core/app/stats" 25 | 26 | // Inbound and outbound proxies. 27 | // _ "v2ray.com/core/proxy/blackhole" 28 | // _ "v2ray.com/core/proxy/dns" 29 | // _ "v2ray.com/core/proxy/dokodemo" 30 | // _ "v2ray.com/core/proxy/freedom" 31 | // _ "v2ray.com/core/proxy/http" 32 | 33 | // _ "v2ray.com/core/proxy/mtproto" 34 | // _ "v2ray.com/core/proxy/shadowsocks" 35 | // _ "v2ray.com/core/proxy/socks" 36 | // _ "v2ray.com/core/proxy/vmess/inbound" 37 | _ "v2ray.com/core/proxy/vmess/outbound" 38 | 39 | // Transports 40 | // _ "v2ray.com/core/transport/internet/domainsocket" 41 | _ "v2ray.com/core/transport/internet/http" 42 | _ "v2ray.com/core/transport/internet/kcp" 43 | _ "v2ray.com/core/transport/internet/quic" 44 | _ "v2ray.com/core/transport/internet/tcp" 45 | _ "v2ray.com/core/transport/internet/tls" 46 | _ "v2ray.com/core/transport/internet/udp" 47 | _ "v2ray.com/core/transport/internet/websocket" 48 | 49 | // Transport headers 50 | _ "v2ray.com/core/transport/internet/headers/http" 51 | _ "v2ray.com/core/transport/internet/headers/noop" 52 | _ "v2ray.com/core/transport/internet/headers/srtp" 53 | _ "v2ray.com/core/transport/internet/headers/tls" 54 | _ "v2ray.com/core/transport/internet/headers/utp" 55 | _ "v2ray.com/core/transport/internet/headers/wechat" 56 | _ "v2ray.com/core/transport/internet/headers/wireguard" 57 | ) 58 | -------------------------------------------------------------------------------- /v2rayss/go.mod: -------------------------------------------------------------------------------- 1 | module v2rayss 2 | 3 | go 1.16 4 | 5 | require ( 6 | golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9 // indirect 7 | v2ray.com/core v4.19.1+incompatible 8 | ) 9 | -------------------------------------------------------------------------------- /v2rayss/go.sum: -------------------------------------------------------------------------------- 1 | cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= 2 | github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= 3 | github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58= 4 | github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= 5 | github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= 6 | github.com/golang/mock v1.2.0 h1:28o5sBqPkBsMGnC6b4MvE2TzSr5/AT4c/1fLqVGIwlk= 7 | github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= 8 | github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= 9 | github.com/golang/protobuf v1.2.1-0.20190205222052-c823c79ea157 h1:SdQMHsZ18/XZCHuwt3IF+dvHgYTO2XMWZjv3XBKQqAI= 10 | github.com/golang/protobuf v1.2.1-0.20190205222052-c823c79ea157/go.mod h1:Qd/q+1AKNOZr9uGQzbzCmRO6sUih6GTPZv6a1/R87v0= 11 | github.com/google/go-cmp v0.2.0 h1:+dTQ8DZQJz0Mb/HjFlkptS1FeQ4cWSnN941F8aEG4SQ= 12 | github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= 13 | github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= 14 | github.com/miekg/dns v1.1.4 h1:rCMZsU2ScVSYcAsOXgmC6+AKOK+6pmQTOcw03nfwYV0= 15 | github.com/miekg/dns v1.1.4/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= 16 | go.starlark.net v0.0.0-20190225160109-1174b2613e82 h1:vAHCTDREx7LqPeWqNeTvCKWcURJztP3wBKnF2Q0sW7Q= 17 | go.starlark.net v0.0.0-20190225160109-1174b2613e82/go.mod h1:c1/X6cHgvdXj6pUlmWKMkuqRnW4K8x2vwt6JAaaircg= 18 | golang.org/x/crypto v0.0.0-20190208162236-193df9c0f06f h1:ETU2VEl7TnT5bl7IvuKEzTDpplg5wzGYsOCAPhdoEIg= 19 | golang.org/x/crypto v0.0.0-20190208162236-193df9c0f06f/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= 20 | golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= 21 | golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= 22 | golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= 23 | golang.org/x/net v0.0.0-20190206173232-65e2d4e15006 h1:bfLnR+k0tq5Lqt6dflRLcZiz6UaXCMt3vhYJ1l4FQ80= 24 | golang.org/x/net v0.0.0-20190206173232-65e2d4e15006/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= 25 | golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= 26 | golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f h1:wMNYb4v58l5UBM7MYRLPG6ZhfOqbKu7X5eyFl8ZhKvA= 27 | golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= 28 | golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= 29 | golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9 h1:YTzHMGlqJu67/uEo1lBv0n3wBXhXNeUbB1XfN2vmTm0= 30 | golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= 31 | golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg= 32 | golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= 33 | golang.org/x/tools v0.0.0-20180828015842-6cd1fcedba52/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= 34 | google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= 35 | google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= 36 | google.golang.org/genproto v0.0.0-20180831171423-11092d34479b h1:lohp5blsw53GBXtLyLNaTXPXS9pJ1tiTw61ZHUoE9Qw= 37 | google.golang.org/genproto v0.0.0-20180831171423-11092d34479b/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= 38 | google.golang.org/grpc v1.18.0 h1:IZl7mfBGfbhYx2p2rKRtYgDFw6SBz+kclmxYrCksPPA= 39 | google.golang.org/grpc v1.18.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs= 40 | h12.io/socks v1.0.0/go.mod h1:MdYbo5/eB9ka7u5dzW2Qh0iSyJENwB3KI5H5ngenFGA= 41 | honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= 42 | v2ray.com/core v4.19.1+incompatible h1:JWoYsYlCpFOJX5KcmSkAMHOqOjzux+wx/HtgMBkUvSg= 43 | v2ray.com/core v4.19.1+incompatible/go.mod h1:0yC/gG6Jd6qgp9PuaXuFE9uOi1xVYoDPexD1nlFms/w= 44 | -------------------------------------------------------------------------------- /v2rayss/library/library.go: -------------------------------------------------------------------------------- 1 | //!build amd64 2 | package main 3 | 4 | import "C" 5 | 6 | import ( 7 | "encoding/json" 8 | "v2rayss" 9 | ) 10 | 11 | var ( 12 | app *v2rayss.App 13 | ) 14 | 15 | //export newApp 16 | func newApp() *C.char { 17 | var err error 18 | app, err = v2rayss.New() 19 | if err != nil { 20 | app = nil 21 | return C.CString("err: " + err.Error()) 22 | } 23 | return C.CString("") 24 | } 25 | 26 | //export appRunning 27 | func appRunning() C.uchar { 28 | if app == nil { 29 | return C.uchar(0) 30 | } 31 | if app.Running() { 32 | return C.uchar(1) 33 | } 34 | return C.uchar(0) 35 | } 36 | 37 | //export appConfInfo 38 | func appConfInfo() *C.char { 39 | if app == nil { 40 | return C.CString(`{"addr":"", "port":0, "proto": "", "subaddr": ""}`) 41 | } 42 | d, err := json.Marshal(app.GetConfInfo()) 43 | if err != nil { 44 | return C.CString("err: " + 45 | err.Error()) 46 | } 47 | return C.CString(string(d)) 48 | } 49 | 50 | //export appSetSubAddr 51 | func appSetSubAddr(addr *C.char) *C.char { 52 | if app == nil { 53 | return C.CString("") 54 | } 55 | if err := app.SetSubAddr(C.GoString(addr)); err != nil { 56 | return C.CString(err.Error()) 57 | } 58 | return C.CString("") 59 | } 60 | 61 | //export appLoadSubAddr 62 | func appLoadSubAddr() *C.char { 63 | if app == nil { 64 | return C.CString("") 65 | } 66 | if err := app.LoadSubAddr(); err != nil { 67 | return C.CString(err.Error()) 68 | } 69 | return C.CString("") 70 | } 71 | 72 | //export appPing 73 | func appPing() *C.char { 74 | if app == nil { 75 | return C.CString("") 76 | } 77 | if err := app.PingLinks(); err != nil { 78 | return C.CString(err.Error()) 79 | } 80 | return C.CString("") 81 | } 82 | 83 | //export appListHosts 84 | func appListHosts() *C.char { 85 | if app == nil { 86 | return C.CString("[]") 87 | } 88 | d, err := json.Marshal(app.ListHosts()) 89 | if err != nil { 90 | return C.CString("err: " + err.Error()) 91 | } 92 | return C.CString(string(d)) 93 | } 94 | 95 | //export appSelectLink 96 | func appSelectLink(index C.int) *C.char { 97 | if app == nil { 98 | return C.CString("[]") 99 | } 100 | if err := app.SelectLink(int(index)); err != nil { 101 | return C.CString(err.Error()) 102 | } 103 | return C.CString("") 104 | } 105 | 106 | //export appStart 107 | func appStart() *C.char { 108 | if app == nil { 109 | return C.CString("") 110 | } 111 | if err := app.Start(); err != nil { 112 | return C.CString(err.Error()) 113 | } 114 | return C.CString("") 115 | } 116 | 117 | //export appClose 118 | func appClose() *C.char { 119 | if app == nil { 120 | return C.CString("") 121 | } 122 | if err := app.Close(); err != nil { 123 | return C.CString(err.Error()) 124 | } 125 | return C.CString("") 126 | } 127 | 128 | func main() {} 129 | -------------------------------------------------------------------------------- /v2rayss/v2rayss.go: -------------------------------------------------------------------------------- 1 | package v2rayss 2 | 3 | import ( 4 | "context" 5 | "errors" 6 | "fmt" 7 | "sync" 8 | "v2rayss/core/parser" 9 | "v2rayss/core/vmess" 10 | 11 | v2rayCore "v2ray.com/core" 12 | "v2ray.com/core/app/dispatcher" 13 | applog "v2ray.com/core/app/log" 14 | "v2ray.com/core/app/proxyman" 15 | commlog "v2ray.com/core/common/log" 16 | "v2ray.com/core/common/serial" 17 | "v2ray.com/core/features/inbound" 18 | "v2ray.com/core/features/outbound" 19 | ) 20 | 21 | type servInfo struct { 22 | addr string 23 | proto string 24 | port uint 25 | subAddr string // 订阅地址 26 | } 27 | 28 | type App struct { 29 | mu sync.Mutex 30 | wg sync.WaitGroup 31 | 32 | coreServer *v2rayCore.Instance 33 | running bool 34 | pingRound int 35 | 36 | conf *servInfo 37 | selectone int 38 | links []*vmess.Link 39 | } 40 | 41 | var ( 42 | once sync.Once 43 | app *App 44 | ) 45 | 46 | func New() (*App, error) { 47 | var err error 48 | once.Do(func() { 49 | app = &App{} 50 | err = app.init() 51 | }) 52 | return app, err 53 | } 54 | 55 | func (app *App) init() error { 56 | app.conf = &servInfo{ 57 | addr: "127.0.0.1", 58 | port: 1080, 59 | proto: "socks", 60 | } 61 | app.pingRound = 3 62 | // set v2ray inbound 63 | in, err := vmess.Vmess2Inbound(app.conf.addr, app.conf.proto, uint32(app.conf.port)) 64 | if err != nil { 65 | return err 66 | } 67 | coreConf := makeV2rayConfig() 68 | coreConf.Inbound = []*v2rayCore.InboundHandlerConfig{in} 69 | app.coreServer, err = v2rayCore.New(coreConf) 70 | if err != nil { 71 | app.coreServer = nil 72 | return err 73 | } 74 | return nil 75 | } 76 | 77 | func (app *App) Running() bool { 78 | return app.running 79 | } 80 | 81 | func (app *App) GetConfInfo() map[string]interface{} { 82 | return map[string]interface{}{ 83 | "addr": app.conf.addr, 84 | "port": app.conf.port, 85 | "proto": app.conf.proto, 86 | "subaddr": app.conf.subAddr, 87 | } 88 | } 89 | 90 | func (app *App) SaveConfInfo(addr, protocol string, port uint, subaddr string) error { 91 | app.mu.Lock() 92 | defer app.mu.Unlock() 93 | if addr != app.conf.addr || protocol != app.conf.proto || port != app.conf.port { 94 | if err := v2rayServeRunningHook(app.running, app.coreServer, func() error { 95 | // set v2ray in bound 96 | app.conf.addr = addr 97 | app.conf.proto = protocol 98 | app.conf.port = port 99 | in, err := vmess.Vmess2Inbound(app.conf.addr, app.conf.proto, uint32(app.conf.port)) 100 | if err != nil { 101 | return err 102 | } 103 | return app.setCoreSeverDefaultIntbound(in) 104 | }); err != nil { 105 | return err 106 | } 107 | } 108 | if subaddr != app.conf.subAddr { 109 | app.conf.subAddr = subaddr 110 | return app.setSubAddr(subaddr) 111 | } 112 | return nil 113 | } 114 | 115 | func v2rayServeRunningHook(running bool, server *v2rayCore.Instance, f func() error) error { 116 | if running { 117 | if err := server.Close(); err != nil { 118 | return err 119 | } 120 | } 121 | if err := f(); err != nil { 122 | return err 123 | } 124 | if running { 125 | return server.Start() 126 | } 127 | return nil 128 | } 129 | 130 | func (app *App) setCoreSeverDefaultIntbound(in *v2rayCore.InboundHandlerConfig) error { 131 | inboundManager := app.coreServer.GetFeature(inbound.ManagerType()).(inbound.Manager) 132 | rawHandler, err := v2rayCore.CreateObject(app.coreServer, in) 133 | if err != nil { 134 | return err 135 | } 136 | handler, ok := rawHandler.(inbound.Handler) 137 | if !ok { 138 | return errors.New("not an InboundHandler") 139 | } 140 | // remove old inbound 141 | if err := inboundManager.RemoveHandler(context.Background(), "proxy"); err != nil { 142 | return err 143 | } 144 | // add new in 145 | return inboundManager.AddHandler(context.Background(), handler) 146 | } 147 | 148 | func (app *App) SetSubAddr(addr string) error { 149 | app.mu.Lock() 150 | defer app.mu.Unlock() 151 | return app.setSubAddr(addr) 152 | } 153 | 154 | func (app *App) setSubAddr(addr string) error { 155 | if addr != app.conf.subAddr { 156 | app.conf.subAddr = addr 157 | return app.loadSubAddr() 158 | } 159 | return nil 160 | } 161 | 162 | func (app *App) LoadSubAddr() error { 163 | app.mu.Lock() 164 | defer app.mu.Unlock() 165 | return app.loadSubAddr() 166 | } 167 | 168 | func (app *App) loadSubAddr() error { 169 | links, err := parser.Parse(app.conf.subAddr) 170 | if err != nil { 171 | return err 172 | } 173 | app.links = links 174 | return nil 175 | } 176 | 177 | func (app *App) PingLinks() error { 178 | app.mu.Lock() 179 | defer app.mu.Unlock() 180 | if app.links == nil { 181 | return nil 182 | } 183 | for i := range app.links { 184 | app.wg.Add(1) 185 | go func(i int) { 186 | defer app.wg.Done() 187 | if t, err := app.links[i].Ping(app.pingRound, "https://cloudflare.com/cdn-cgi/trace"); err == nil { 188 | app.links[i].PingTime = t 189 | } else { 190 | app.links[i].PingTime = vmess.NoPing 191 | } 192 | }(i) 193 | } 194 | app.wg.Wait() 195 | return nil 196 | } 197 | 198 | func (app *App) ListHosts() []string { 199 | app.mu.Lock() 200 | defer app.mu.Unlock() 201 | if app.links == nil { 202 | return []string{} 203 | } 204 | res := make([]string, len(app.links)) 205 | for i := range app.links { 206 | res[i] = fmt.Sprintf("%s - %s", app.links[i].PingTime, app.links[i].Ps) 207 | } 208 | return res 209 | } 210 | 211 | func (app *App) SelectLink(index int) error { 212 | app.mu.Lock() 213 | defer app.mu.Unlock() 214 | if index < 0 || index >= len(app.links) { 215 | return errors.New("Links index overflow") 216 | } 217 | return v2rayServeRunningHook(app.running, app.coreServer, func() error { 218 | // set v2ray out bound 219 | app.selectone = index 220 | out, err := vmess.Vmess2Outbound(app.links[app.selectone], true) 221 | if err != nil { 222 | return err 223 | } 224 | return app.setCoreSeverDefaultOutbound(out) 225 | }) 226 | } 227 | 228 | func (app *App) setCoreSeverDefaultOutbound(out *v2rayCore.OutboundHandlerConfig) error { 229 | outboundManager := app.coreServer.GetFeature(outbound.ManagerType()).(outbound.Manager) 230 | rawHandler, err := v2rayCore.CreateObject(app.coreServer, out) 231 | if err != nil { 232 | return err 233 | } 234 | handler, ok := rawHandler.(outbound.Handler) 235 | if !ok { 236 | return errors.New("not an OutboundHandler") 237 | } 238 | // remove old out 239 | if h := outboundManager.GetHandler("proxy"); h != nil { 240 | if err := outboundManager.RemoveHandler(context.Background(), "proxy"); err != nil { 241 | return err 242 | } 243 | } 244 | // add new out 245 | return outboundManager.AddHandler(context.Background(), handler) 246 | } 247 | 248 | func (app *App) Start() error { 249 | app.mu.Lock() 250 | defer app.mu.Unlock() 251 | if app.running { 252 | return nil 253 | } 254 | app.running = true 255 | return app.coreServer.Start() 256 | } 257 | 258 | func (app *App) Close() error { 259 | app.mu.Lock() 260 | defer app.mu.Unlock() 261 | if !app.running { 262 | return nil 263 | } 264 | app.running = false 265 | return app.coreServer.Close() 266 | } 267 | 268 | func makeV2rayConfig() *v2rayCore.Config { 269 | return &v2rayCore.Config{ 270 | App: []*serial.TypedMessage{ 271 | serial.ToTypedMessage(&applog.Config{ 272 | ErrorLogType: applog.LogType_Console, 273 | ErrorLogLevel: commlog.Severity_Error, 274 | }), 275 | serial.ToTypedMessage(&dispatcher.Config{}), 276 | serial.ToTypedMessage(&proxyman.InboundConfig{}), 277 | serial.ToTypedMessage(&proxyman.OutboundConfig{}), 278 | }, 279 | Outbound: make([]*v2rayCore.OutboundHandlerConfig, 0, 1), 280 | Inbound: make([]*v2rayCore.InboundHandlerConfig, 0, 1), 281 | } 282 | } 283 | -------------------------------------------------------------------------------- /v2rayss/v2rayss_test.go: -------------------------------------------------------------------------------- 1 | package v2rayss 2 | 3 | import ( 4 | "fmt" 5 | "testing" 6 | "time" 7 | ) 8 | 9 | func TestV2raySs(t *testing.T) { 10 | appt, err := New() 11 | if err != nil { 12 | t.Fatal(err) 13 | } 14 | t.Log(appt.GetConfInfo()) 15 | addr := "https://724.subadd.xyz/link/ct24m5Aea5M0oMIH?sub=3" 16 | t.Log(appt.SetSubAddr(addr)) 17 | t.Log(appt.PingLinks()) 18 | links := appt.ListHosts() 19 | for i := range links { 20 | fmt.Println(links[i]) 21 | } 22 | fmt.Println("links - len:", len(links)) 23 | 24 | t.Log(appt.SelectLink(10)) 25 | 26 | t.Log("start......................") 27 | t.Log(appt.Start()) 28 | 29 | time.Sleep(30 * time.Second) 30 | t.Log("change conf port:1081", appt.SaveConfInfo("127.0.0.1", "socks", 1081, "https://724.subadd.xyz/link/ct24m5Aea5M0oMIH?sub=3")) 31 | 32 | time.Sleep(30 * time.Second) 33 | t.Log("select an other one", appt.SelectLink(8)) 34 | 35 | time.Sleep(30 * time.Second) 36 | t.Log(appt.Close()) 37 | } 38 | --------------------------------------------------------------------------------