diff --git a/src/download.c b/src/download.c index fd24be9..002717c 100644 --- a/src/download.c +++ b/src/download.c @@ -22,7 +22,6 @@ #include "download.h" #endif -// This will download entries from the config int download_entries(struct entry **entries){ int i = (*entries)[0].entrytype; int rc = 0; @@ -62,7 +61,6 @@ int download_entries(struct entry **entries){ remove(TMPDOWNLOADLOCATION); return 0; } -// Uses libcurl to download and add file to tmpf int download_libcurl(char *e){ CURL *curl; CURLcode res; @@ -93,7 +91,6 @@ int download_libcurl(char *e){ return 0; } -// Parse what was downloaded int parse_download(char *buff, size_t size, size_t nmemb){ FILE *tmpf; int i=0; @@ -108,8 +105,6 @@ int parse_download(char *buff, size_t size, size_t nmemb){ fclose(tmpf); return nmemb; } -// Checks the hosts file for a download section matching the url -// then copies it to the tmp file int copy_old_download(char *url){ FILE *hostsf; FILE *tmpf; diff --git a/src/rhosts.c b/src/rhosts.c index 18bfc9d..2e87083 100644 --- a/src/rhosts.c +++ b/src/rhosts.c @@ -23,7 +23,6 @@ #include "rhosts.h" #endif - int main(int argc, char *argv[]){ struct entry *entries; int rc =0; @@ -56,10 +55,6 @@ int main(int argc, char *argv[]){ } return 0; } - - -// Take the address of a struct entry pointer and returns it filled with -// entries from the config file int parse_config(struct entry **entries){ int rc=0; @@ -73,7 +68,7 @@ int parse_config(struct entry **entries){ int *j = NULL; // A shorter reference to how many entries j = &(*entries)[0].entrytype; - char c='\0'; // Character Buffer + char c='\0'; char buff[MAXSTRSIZE]; buff[0]='\0'; short int valtyp = CONTENTTYPE_BLANK; @@ -108,7 +103,6 @@ int parse_config(struct entry **entries){ buff[0] = '\0'; valtyp = CONTENTTYPE_BLANK; } - // Remove Blank Lines else if (c == '\n' || c == EOF){ buff[0] = '\0'; } @@ -138,15 +132,12 @@ int openfile(FILE **file, char *mode, char *location){ } return 0; } -// Recieves a string and returns a content type short int determine_config_entry_value(char *buff){ if (strncmp(buff,"#", 1) == 0){return CONTENTTYPE_COMMENT;} else if (strcmp(buff,"site") == 0){return CONTENTTYPE_SITE;} else if (strcmp(buff,"download") == 0){return CONTENTTYPE_DOWNLOAD;} else {return CONTENTTYPE_ERROR;} } - -// Copies the beginning of the hosts file to tmpfile int preserve_static_entries(){ FILE *hostsf; FILE *tmpf; @@ -190,7 +181,6 @@ int preserve_static_entries(){ fclose(tmpf); return 0; } - int add_site_entries(struct entry **entries){ int i = (*entries)[0].entrytype; int rc = 0; @@ -226,7 +216,6 @@ int add_site_entries(struct entry **entries){ fclose(tmpf); return 0; } -// Copies the contents of the temp file to the hosts file int copy_tmp_to_hosts(){ FILE *tmpf; tmpf = fopen(TMPLOCATION,"r");