Hello Hugo

Hello

Hello, this is a Hugo Test Site.

 1#include "tool_setup.h"
 2
 3#include "tool_cfgable.h"
 4#include "tool_cb_dbg.h"
 5#include "tool_msgs.h"
 6#include "tool_setopt.h"
 7#include "tool_ssls.h"
 8#include "tool_parsecfg.h"
 9
10/* The maximum line length for an ecoded session ticket */
11#define MAX_SSLS_LINE (64 * 1024)
12
13
14static CURLcode tool_ssls_easy(struct OperationConfig *config,
15                               CURLSH *share, CURL **peasy)
16{
17  CURLcode result = CURLE_OK;
18
19  *peasy = curl_easy_init();
20  if(!*peasy)
21    return CURLE_OUT_OF_MEMORY;
22
23  result = curl_easy_setopt(*peasy, CURLOPT_SHARE, share);
24  if(!result && (global->tracetype != TRACE_NONE)) {
25    my_setopt(*peasy, CURLOPT_DEBUGFUNCTION, tool_debug_cb);
26    my_setopt(*peasy, CURLOPT_DEBUGDATA, config);
27    my_setopt_long(*peasy, CURLOPT_VERBOSE, 1L);
28  }
29  return result;
30}

Some more text at the end.

Section 1

1declare a=1
2echo "${a}"

This is a paragraph.