- 
          
- 
                Notifications
    You must be signed in to change notification settings 
- Fork 622
Closed
Labels
Description
From the documentation of flask-socketio and python-socketio, the cookie argument can set only the name of a cookie.
python-socketio/socketio/server.py
Lines 72 to 74 in 314971c
| :param cookie: Name of the HTTP cookie that contains the client session | |
| id. If set to ``None``, a cookie is not sent to the client. | |
| The default is ``'io'``. | 
However, in engineio docs it seems that we can set the cookie params (httponly, secure etc).
I guess it would be nice for a developer to have the complete information about this argument in python-socketio/flask-socketio libraries because generally don't search engineio repo/documentation in order to find the actual information about class arguments.