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


int main(void)
{
    KiroServer *server = g_object_new(KIRO_TYPE_SERVER, NULL);
    kiro_server_start(server, "192.168.11.61", "60010");
    return 0; 
}