From 126e505221169c2bddc7ac5269f9c6eaee2937ff Mon Sep 17 00:00:00 2001 From: Jonathan McCrohan Date: Wed, 2 Nov 2011 01:39:30 +0000 Subject: Fix indentation. --- dbrtpi.c | 81 +++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 42 insertions(+), 39 deletions(-) diff --git a/dbrtpi.c b/dbrtpi.c index dd3bed4..c3d7123 100644 --- a/dbrtpi.c +++ b/dbrtpi.c @@ -1,23 +1,23 @@ /* -* dbrtpi.c -* -* Copyright (C) 2011 - Jonathan McCrohan -* -* This program is free software; you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation; either version 2 of the License, or -* (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program. If not, see . -*/ - -// gcc dbrtpi.c $(pkg-config --libs --cflags libcurl) + * dbrtpi.c + * + * Copyright (C) 2011 - Jonathan McCrohan + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +// gcc dbrtpi.c -o dbrtpi `pkg-config --libs --cflags libcurl` #include #include @@ -25,31 +25,34 @@ #define URL "http://rtpi.dublinbus.biznetservers.com/DublinBusRTPIService.asmx" +int main(int argc, char *argv[]) { -int main(int argc, char *argv[]){ + char soaprequest[1024]; + int stopid = 403; + sprintf( + soaprequest, + "\n\n\n\n%d\n1\n\n\n", + stopid); - char soaprequest [1024]; - int stopid = 403; - sprintf(soaprequest,"\n\n\n\n%d\n1\n\n\n",stopid); - - struct curl_slist *header = NULL; - header = curl_slist_append(header,"Content-Type: application/soap+xml; charset=utf-8"); - header = curl_slist_append(header, "Accept: text/xml"); + struct curl_slist *header = NULL; + header = curl_slist_append(header, + "Content-Type: application/soap+xml; charset=utf-8"); + header = curl_slist_append(header, "Accept: text/xml"); - CURL *curl; - CURLcode res; + CURL *curl; + CURLcode res; - curl = curl_easy_init(); - if(curl){ - curl_easy_setopt(curl, CURLOPT_URL, URL); - curl_easy_setopt(curl, CURLOPT_POSTFIELDS, soaprequest); - curl_easy_setopt(curl, CURLOPT_HTTPHEADER, header); - curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE_LARGE, (curl_off_t)-1); - res = curl_easy_perform(curl); + curl = curl_easy_init(); + if (curl) { + curl_easy_setopt(curl, CURLOPT_URL, URL); + curl_easy_setopt(curl, CURLOPT_POSTFIELDS, soaprequest); + curl_easy_setopt(curl, CURLOPT_HTTPHEADER, header); + curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE_LARGE, (curl_off_t) - 1); + res = curl_easy_perform(curl); - curl_easy_cleanup(curl); + curl_easy_cleanup(curl); - printf("%s",res); - } + printf("%s", res); + } } -- cgit v1.2.3