many changes in layout, addition of mbedtls library for RSA encryption.

This commit is contained in:
jmjatlanta 2016-10-31 11:13:42 -05:00
parent 9c309ebbc6
commit e1c1a7ffbf
174 changed files with 87855 additions and 67 deletions

View file

@ -0,0 +1,23 @@
/***
* methods to parse the command line parameters
*/
#ifndef __COMMANDS_CLI_PARSE_H__
#define __COMMANDS_CLI_PARSE_H__
#include <stdio.h>
#include "ipfs/commands/command.h"
/***
* turns parameters passed in into a Request struct
* @param params the command line parameters
* @param inStream a stream (for piped input)
* @param cmd the command struct, already initialized
* @param request the end result, something that can be passed on that actually does something
* @returns 0 if something bad happens, otherwise 1
*/
int cli_parse(char** params, FILE* inStream, struct Command* cmd, struct Request* request);
int cli_parse_opts(char** params, struct Command* cmd, char* path, char** stringVals);
#endif /* parse_h */