Skip to content

Commit

Permalink
WIP imclient notes
Browse files Browse the repository at this point in the history
  • Loading branch information
elliefm committed Aug 14, 2024
1 parent 90a805a commit 0afca14
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions doc/examples/libcyrus/example_libcyrus.c
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,20 @@ void test_glob(void)
puts("glob ok");
}

void test_imclient(void)
{
/* XXX need somewhere to connect to... cass already has an imapd running,
* right? could get the host:port for that as commandline args i guess
*/
/* XXX though there's already an "example" imclient in the imclient.3 man
* page, though the API it demonstrates doesn't match the headers, so i
* guess it's bitrotted
*/
/* XXX might need a separate example_imclient.c, which is possible now that
* the file name isn't the dependencies list!
*/
}

int main(int argc, char **argv)
{
const char *alt_config = NULL;
Expand Down Expand Up @@ -230,4 +244,5 @@ int main(int argc, char **argv)
test_cyr_qsort_r();
test_cyrusdb();
test_glob();
test_imclient();
}

0 comments on commit 0afca14

Please sign in to comment.