Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add HTTP parser support | Alvaro Neira Ayuso | 2020-01-19 | 2 | -11/+58 | |
| | | | | | | The new OpenGnsys support to communicate server and client side will be HTTP. This new class allows us the support for parsing all the message received from the server in HTTP format. | |||||
* | Modify Client state to use enum | Alvaro Neira Ayuso | 2020-01-19 | 1 | -6/+8 | |
| | | | | | | | | | During our connections, we are using states to control the Client Socket. We defined using global variables. In case that we modify this global variable, we need to change it in serveral parts of the code. Using enums and declaring a new class, we can redefine the values or create new states without changing the same code in differents python files. | |||||
* | Create new ogClient | Alvaro Neira Ayuso | 2020-01-19 | 3 | -0/+119 | |
This commit init the new ogClient. The new ogClient has support for configuring and for connecting with the ogAdminServer. |