summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* remove another build dirSebastian Schmelzer2011-09-0639-3602/+0Star
|
* remove DebugSebastian Schmelzer2011-09-0621-405/+1Star
|
* no build dirs in gitSebastian Schmelzer2011-09-0639-14389/+2Star
|
* Merge branch 'master' of openslx.org:lsfks/projekte/fbguiSebastian Schmelzer2011-09-0621-3510/+253Star
|\
| * some changes in the cmakelist file. only added and again removed the same ↵Niklas2011-09-0621-3510/+253Star
| | | | | | | | stuff also deleted some files in the debug folder
* | fix cmake stuffSebastian Schmelzer2011-09-063-14/+16
|/
* add requirement for qt 4.7Sebastian Schmelzer2011-09-061-1/+2
|
* fix cmake includesSebastian Schmelzer2011-09-061-1/+1
|
* transferSebastian Schmelzer2011-09-062-8/+12
|
* add version.hNiklas2011-09-061-0/+1
|
* fix gitignoreSebastian Schmelzer2011-09-061-1/+1
|
* fix compile errorsSebastian Schmelzer2011-09-063-7/+21
|
* latest version of all files. cmake still doesn't workNiklas2011-09-0631-740/+4140
|
* finaly managed it to create a .so lib of the customdhcpcd files. the ↵Niklas2011-09-0521-524/+281Star
| | | | dhcpcd.c file is not included in this lib (it contains the main function)
* tried to manage cmake but failed. also tried to add the del_route() method ↵Niklas2011-09-05107-216/+17668
| | | | of interface.c but failed too. made a static lib of the customdhcpcd files but couldn't change it to a shared lib. (tried to add SHARE to the add_library code but this resulted in an error multiple declarations of main...
* added a new container class which holds config informations about an ↵Niklas2011-09-0213-113/+368
| | | | interface. also solved the message loss problem by setting the read an writing messages to the same size
* just minor changes. deltions of unuseful commentsNiklas2011-09-025-24/+2Star
|
* fix message lossSebastian Schmelzer2011-09-017-13/+43
|
* some comments to the LogReceiver methodsNiklas2011-09-011-0/+34
|
* some comments to the LogReceiver methodsNiklas2011-09-011-2/+53
|
* we tried some fixes for the messge loss problem, but we failed. Sebastian ↵Niklas2011-09-014-7/+8
| | | | will look at the code later. server is now a echo server which sends ack for every received message.
* bigger changes in the checkConnectivity method. using now route command to ↵Niklas2011-09-0112-20/+200
| | | | delete and add the default route. for this i am writing the gateways for every interface into a new file. located at /var/tmp/gateways_<interfaceName>
* tried to clean the git. deleted old unused files and folders. moved ↵Niklas2011-09-01122-8088/+0Star
| | | | customdhcpcd and LogReceiver to the fbgui folder
* some minor changesNiklas2011-09-014-2/+17
|
* changed sleep(1) to usleep(500) after every send to socket in logwriter.c ↵Niklas2011-08-305-98/+115
| | | | Main Problem with this workaround: with increasing number of messages, the program will become slower and slower. also added a new map in which i store the pair (interfacename, qlocalsocket client) with this i can check if there are still some messages left, when a process finishes
* added check for file existens. renamed the dhcpcd bin to customdhcpcd. ↵Niklas2011-08-307-11/+49
| | | | temporal solution for the message loss problem => added a sleep(1) function after every send operation. this makes the programm a bit slower but it solves the problem, we now receive every message (issue 339)
* tried to fix the message loss problem, but failed. TODO: debug and socket ↵Niklas2011-08-294-27/+1Star
| | | | sniffer
* added makefilesNiklas2011-08-2931-30/+1221
|
* added to dialogs. one for the critical error case (abot boot dialog), one ↵Niklas2011-08-2410-14/+421
| | | | for the succesful case (choose interface dialog). also added a new function for testing the connectivity via tcpsocket (or http request).
* added a additional status label and some signalsNiklas2011-08-226-119/+122
|
* changed code order. added new signalsNiklas2011-08-194-150/+163
|
* added internet test. each configured interface will be tested if it is ↵Niklas2011-08-183-29/+57
| | | | possible to ping the server.
* new function for checkInternetConnection, check with sessions for each ↵Niklas2011-08-163-3/+25
| | | | config and test if you can get a valid response with a qhostInfo
* added some log statements to the dhcpcd client. But unfortunately it seems ↵Niklas2011-08-0111-103/+128
| | | | that some message will not be delivered. It happens that after the process finished message, some other messages arrived
* seperation of logic and gui completed.Niklas2011-08-017-57/+70
|
* better version of the logwriter.c and started to devide gui and logicNiklas2011-07-2811-150/+304
|
* log messages are delivered to qt app.Niklas2011-07-218-22/+58
|
* configuration of more than one interface is working. Both progressbars are ↵Niklas2011-07-203-9/+12
| | | | updated. only bad thing is that it is slower than expected due to the qt gui
* added the blacklist functionNiklas2011-07-203-5/+15
|
* made a small gui. Interfac names and progressbars will be added dynamicaly.Niklas2011-07-185-98/+124
|
* customdhcpcd is now compiling and can communicate with the LogReceiverNiklas2011-07-149-81/+454
| | | | started to implement the QProcess handling (parallel calls of dhcpcd out of fbgui/LogReceiver)
* multiple clients possible. inserted something into _send_messageNiklas2011-07-138-38/+123
|
* added the custom dhcpcd client to git.Niklas2011-07-1142-0/+7862
|
* updated the LogReceiver and LogWriter. we are now able to send and receive ↵Niklas2011-07-1111-63/+205
| | | | Status SubStatus and msg messages.
* added the two tryout with a qt LogReceiver and a c code clientNiklas2011-07-0612-0/+330
|
* new funtions for the networkDiscovery class.Niklas2011-06-2916-788/+355Star
| | | | | | extensions to the logger.c some tryouts with the QLocalSocket also try QSocketNotifyer
* Merge branch 'master' of git.openslx.org:lsfks/projekte/fbguiNiklas2011-06-2826-1305/+1596
|\
| * build.sh dummyJonathan Bauer2011-05-041-31/+1Star
| |
| * build.sh to build-pkg.sh, todo build.sh (fbgui compiling)Jonathan Bauer2011-05-041-0/+36
| |
| * README started...Jonathan Bauer2011-05-041-1/+27
| |