summaryrefslogtreecommitdiffstats
path: root/test-client.c
blob: 67dacf754d49995f222e26d636139f631e9e00ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include "kiro-client.h"


int main(void)
{
    KiroClient *client = g_object_new(KIRO_TYPE_CLIENT, NULL);
    kiro_client_connect(client, "192.168.11.61", "60010", 5000);
    return 0; 
}