aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-communicator-quic.c
blob: 130a76abc0ba1a8957c0c7ec46fe74934e2f8de7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "gnunet_util_lib.h"
#include "gnunet_core_service.h"

int 
main(int argc, char *const *argv) 
{
    static const struct GNUNET_GETOPT_CommandLineOption options[] = {
        GNUNET_GETOPT_OPTION_END
    };
    
    int ret;
    ret =  (GNUNET_OK == GNUNET_PROGRAM_run(argc, 
                              argv, 
                              "gnunet-communicator-quic", 
                              "quic",
                              options,
                              NULL,
                              NULL))
            ? 0 
            : 1;

    return ret;
}