]> git.meshlink.io Git - meshlink/blobdiff - test/basic.c
Add devclass argument to calls to meshlink_open() in all tests.
[meshlink] / test / basic.c
index 002c5769df4f43288d6a1df0acc9193729a20dde..626d06f6270e885a3133dd0b5819567a0b2d676a 100644 (file)
@@ -6,7 +6,7 @@
 int main(int argc, char *argv[]) {
        // Open a new meshlink instance.
 
-       meshlink_handle_t *mesh = meshlink_open("basic_conf", "foo", "basic");
+       meshlink_handle_t *mesh = meshlink_open("basic_conf", "foo", "basic", DEV_CLASS_BACKBONE);
        if(!mesh) {
                fprintf(stderr, "Could not initialize configuration for foo\n");
                return 1;
@@ -46,7 +46,7 @@ int main(int argc, char *argv[]) {
 
        // Check that the name is ignored now, and that we still are "foo".
 
-       mesh = meshlink_open("basic_conf", "bar", "basic");
+       mesh = meshlink_open("basic_conf", "bar", "basic", DEV_CLASS_BACKBONE);
        if(!mesh) {
                fprintf(stderr, "Could not open configuration for foo a second time\n");
                return 1;