💾 Archived View for gemini.rmf-dev.com › repo › Vaati › Vgmi › files › cb1a48d6ad6ad5943024ff20135cb… captured on 2023-12-28 at 15:45:19. Gemini links have been rewritten to link to archived content

View Raw

More Information

-=-=-=-=-=-=-

Go Back

0 /*

1 * ISC License

2 * Copyright (c) 2023 RMF <rawmonk@firemail.cc>

3 */

4 struct secure;

5 struct secure *secure_new();

6 int secure_send(struct secure *secure, const char *data, size_t len);

7 int secure_read(struct secure *secure, char **data, size_t *len);

8 int secure_connect(struct secure *secure, struct request request);

9 int secure_free(struct secure *secure);

10