merge/upstream-full #105

Manually merged
jabber.developer merged 407 commits from merge/upstream-full into master 2026-05-26 17:54:34 +00:00
387 changed files with 12831 additions and 36002 deletions
Showing only changes of commit ee0d325648 - Show all commits

View File

@@ -397,6 +397,14 @@ prof_input(const char* input)
usleep(1000 * 100); // 100ms delay
}
void
prof_send_raw(const char* bytes)
{
write(fd, bytes, strlen(bytes));
tcdrain(fd);
usleep(1000 * 100);
}
int
prof_output_exact(const char* text)
{

View File

@@ -28,6 +28,7 @@ void prof_start(void);
void prof_connect(void);
void prof_connect_with_roster(const char* roster);
void prof_input(const char* input);
void prof_send_raw(const char* bytes);
int prof_output_exact(const char* text);
int prof_output_regex(const char* text);