
- Adds support for blacklisting domains - Adds support for blacklisting & whitelisting IP addresses and IP ranges. - Reuse threads for HTTP requests AddressPredicate will parse a series of patterns and convert them into regexes or CIDR ranges. When checking whether an address is accessible, we first ensure the domain is whitelisted and isn't blacklisted. If everything is OK, then we start create a new thread for the HTTP request and resolve the IP, ensuring that is whitelisted & not blacklisted. Then the normal HTTP request is continued. However, http.checkURL also needs to resolve the IP address. In order to avoid blocking the Lua thread, this method will return instantly and create a new thread which will queue an event. As both http.request and http.checkURL are now creating threads and queuing events, some logic is abstracted into a separate HTTPTask class - this allows us to share the thread creation, finishing and cancelling logic.
ComputerCraft
ComputerCraft is a Minecraft modification which adds programmable Robots and Computers to the world of Minecraft. If you're not familiar with ComputerCraft, visit the Website or the Wiki to find out more.
About this Repository
ComputerCraft was originally released in late 2011 by Daniel Ratcliffe. In early 2017, after working on the mod solo for five years, it was decided to release the source code publicly to allow Dan to devote time to other projects. This repository marks the first public release of this source code.
The code in this repository will always represent the "bleeding edge" of the ComputerCraft codebase, but stable builds back to 1.79 will be marked on the Releases page.
Contributing
While ComputerCraft will no longer be actively developed by Daniel Ratcliffe, you may still contribute pull requests which will be reviewed and incorporated into releases periodically. A pull request is more likely to be accepted if it meets the following criteria:
- It does not add any new dependencies for compiling, running or using the mod.
- It does not break compatibility with world saves or programs created with previous versions of the mod.
- It does not add unneccessary complexity for users of the mod, and maintains the accessibility for which the mod is known.
- It does not add unneccessary complexity or stylistic changes to the code, especially where functionality is not being changed.
- It does not create bugs!
The pull requests most likely to be accepted are those which fix bugs, simplify code, or make the mod compatible with newer versions of Minecraft.