Files
wolfssl/IDE/Espressif/ESP-IDF/examples/wolfssl_server
gojimmypi ed79545a27 Espressif examples run with local wolfSSL (no setup!) (#6018)
* Espressif examples run with local wolfSSL (no setup!)
* include.am Espressif local no-setup component files
* cleanup Espressif Example CMakeLists.txt, use function
* multiple wolfSSL installs is now a fatal Espressif build error
* Examples no longer need setup
* CompileAll builds local examples, not IDF_PATH ones
* Espressif compileAllExamples both local & ESP-IDF components
* add wolfssl_test_idf test project
* move VisualGDB projects to subdirectories
* move VisualGDB wolfssl_server to subdirectory
* update include.am for moved VisualGDB project files
2023-02-13 14:37:56 -08:00
..
2021-11-27 13:14:36 +09:00

wolfSSL Server Example

The Example contains a wolfSSL simple server.

  1. idf.py menuconfigure to configure the project

    1-1. Example Connection Configuration ->

        WIFI SSID : your own WIFI, which is connected to the Internet.(default is "myssid")  
        WIFI Password : WIFI password, and default is "mypassword"
    

When you want to test the wolfSSL simple server demo

  1. idf.py -p <PORT> flash to compile the code and load the firmware

  2. idf.py monitor to see the context. The assigned IP address can be found in output message.

  3. Once the server connects to the wifi, it is waiting for client request.
    ("Waiting for a connection..." message will be displayed.)

  4. You can use /examples/client to test the server
    e.g ./example/client/client -h xx.xx.xx

See the README.md file in the upper level 'examples' directory for more information about examples.