Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | net: move `gitno` buffer to `staticstr` | Edward Thomson | 2023-05-13 | 1 | -85/+0 |
| | | | | | | | | The `gitno` buffer interface is another layer on top of socket reads. Abstract it a bit into a "static string" that has `git_str` like semantics but without heap allocation which moves the actual reading logic into the socket / stream code, and allows for easier future usage of a static / stack-allocated `git_str`-like interface. | ||||
* | net: move rfc2818 hostname / wildcard matching to util | Edward Thomson | 2023-05-13 | 1 | -39/+0 |
| | |||||
* | refactor: make util an object library | Edward Thomson | 2022-02-22 | 1 | -1/+0 |
| | | | | | | | | | | Instead of simply including the utility files directly, make them a cmake object library for easy reusability between other projects within libgit2. Now the top-level `src` is responsible for platform selection, while the next-level `libgit2` and `util` configurations are responsible for identifying what objects they include. | ||||
* | refactor: `src` is now `src/libgit2` | Edward Thomson | 2022-02-22 | 1 | -0/+125 |