Adapt to OpenSSL 1.1.0
[libisds.git] / client / switchcommercial.c
blob4c7bb62f8b0e29816034d4553cc96aa8df749377
1 #define _XOPEN_SOURCE 500
2 #include <stdlib.h>
3 #include <stdio.h>
4 #include <locale.h>
5 #include <time.h>
6 #include <string.h>
7 #include <isds.h>
8 #include "common.h"
11 int main(void) {
12 struct isds_ctx *ctx = NULL;
13 isds_error err;
14 struct isds_DbOwnerInfo *db_owner_info = NULL;
16 setlocale(LC_ALL, "");
18 err = isds_init();
19 if (err) {
20 printf("isds_init() failed: %s\n", isds_strerror(err));
21 exit(EXIT_FAILURE);
24 isds_set_logging(ILF_ALL & ~ILF_HTTP, ILL_ALL);
26 ctx = isds_ctx_create();
27 if (!ctx) {
28 printf("isds_ctx_create() failed");
31 err = isds_set_timeout(ctx, 10000);
32 if (err) {
33 printf("isds_set_timeout() failed: %s\n", isds_strerror(err));
36 err = isds_login(ctx, url, username(), password(), NULL, NULL);
37 if (err) {
38 printf("isds_login() failed: %s: %s\n", isds_strerror(err),
39 isds_long_message(ctx));
40 } else {
41 printf("Logged in :)\n");
46 printf("Getting info about my box:\n");
47 err = isds_GetOwnerInfoFromLogin(ctx, &db_owner_info);
48 if (err) {
49 printf("isds_GetOwnerInfoFromLogin() failed: %s: %s\n",
50 isds_strerror(err), isds_long_message(ctx));
51 } else {
52 printf("isds_GetOwnerInfoFromLogin() succeeded\n");
54 print_DbOwnerInfo(db_owner_info);
58 /* Switch commecrial message receiving status */
59 if (db_owner_info) {
60 _Bool allow;
61 struct isds_DbOwnerInfo *new_db_owner_info = NULL;
62 char *refnumber = NULL;
64 if (db_owner_info->dbOpenAddressing)
65 allow = !*db_owner_info->dbOpenAddressing;
66 else
67 allow = 1;
69 printf("Switching commerical receiving status to: %s\n",
70 (allow) ? "true" : "false");
71 err = isds_switch_commercial_receiving(ctx, db_owner_info->dbID, allow,
72 NULL, &refnumber);
73 if (err)
74 printf("isds_switch_commercial_receiving() failed: %s: %s\n",
75 isds_strerror(err), isds_long_message(ctx));
76 else {
77 printf("isds_switch_commercial_receiving() succeeded "
78 "as request #%s\n", refnumber);
80 free(refnumber);
82 printf("Verifying info about my box:\n");
83 err = isds_GetOwnerInfoFromLogin(ctx, &new_db_owner_info);
84 if (err) {
85 printf("isds_GetOwnerInfoFromLogin() failed: %s: %s\n",
86 isds_strerror(err), isds_long_message(ctx));
87 } else {
88 printf("isds_GetOwnerInfoFromLogin() succeeded\n");
89 printf("New status is: ");
90 print_bool(new_db_owner_info->dbOpenAddressing);
92 isds_DbOwnerInfo_free(&new_db_owner_info);
95 isds_DbOwnerInfo_free(&db_owner_info);
98 err = isds_logout(ctx);
99 if (err) {
100 printf("isds_logout() failed: %s\n", isds_strerror(err));
104 err = isds_ctx_free(&ctx);
105 if (err) {
106 printf("isds_ctx_free() failed: %s\n", isds_strerror(err));
110 err = isds_cleanup();
111 if (err) {
112 printf("isds_cleanup() failed: %s\n", isds_strerror(err));
115 exit (EXIT_SUCCESS);