Browse Source

rename open6251 to open62541 fix #2152

StalderT 5 years ago
parent
commit
0dbd8b1d1f
2 changed files with 3 additions and 3 deletions
  1. 1 1
      doc/protocol.rst
  2. 2 2
      examples/tutorial_client_firststeps.c

+ 1 - 1
doc/protocol.rst

@@ -41,7 +41,7 @@ SecureChannel
   is established with an *OpenSecureChannel* request and response message pair.
   **Attention!** Even though a SecureChannel is mandatory, encryption might
   still be disabled. The *SecurityMode* of a SecureChannel can be either
-  ``None``, ``Sign``, or ``SignAndEncrypt``. As of version 0.2 of open6251,
+  ``None``, ``Sign``, or ``SignAndEncrypt``. As of version 0.2 of open62541,
   message signing and encryption is still under ongoing development.
 
   With message signing or encryption enabled, the *OpenSecureChannel* messages

+ 2 - 2
examples/tutorial_client_firststeps.c

@@ -46,13 +46,13 @@ int main(void) {
  *
  * .. code-block:: bash
  *
- *     $ gcc -std=c99 open6251.c myClient.c -o myClient
+ *     $ gcc -std=c99 open62541.c myClient.c -o myClient
  *
  * In a MinGW environment, the Winsock library must be added.
  *
  * .. code-block:: bash
  *
- *    $ gcc -std=c99 open6251.c myClient.c -lws2_32 -o myClient.exe
+ *    $ gcc -std=c99 open62541.c myClient.c -lws2_32 -o myClient.exe
  *
  * Further tasks
  * ^^^^^^^^^^^^^