Browse Source

example server prints out its used port

markusgraube 11 years ago
parent
commit
6d9bbf5dc2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/src/opcuaServer.c

+ 1 - 1
examples/src/opcuaServer.c

@@ -50,7 +50,7 @@ int main(void)
 
 void server_init()
 {
-	puts("starting demo Server");
+	printf("Starting open62541 demo server on port %d\n", PORT);
 	//call listen
 
 }