| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
| |
Python 2.7 will be deprecated in January of 2020. So, we need to have the program
with a supported api.
|
| |
|
|
|
|
|
| |
This new patch allows us to reboot the linux machine using reboot binary or in
OpenGnsys client case, use the specific script.
|
|
|
|
|
| |
This new patch allows us to turn off the linux machine using poweroff binary
or in OpenGnsys client case, use the specific script.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Our program sends always the HTTP message:
HTTP/1.0 200 OK
but if the operation sent is not supported, we are sending the same correct
message. This patch add the support to check if the message is supported.
If the message is not supported, we are going to send:
HTTP/1.0 400 Bad request\r\n\r\n
Otherwise, in operations supported:
HTTP/1.0 200 OK
|
| |
|
|
|
|
| |
Ported code from main function to a client function for clearing the main loop.
|
|
|
|
|
| |
Thoses new classes allows us to process and execute commands from server side
sent using HTTP format.
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
| |
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.
|
|
This commit init the new ogClient. The new ogClient has support for configuring
and for connecting with the ogAdminServer.
|