aboutsummaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2011-07-19smatch: Check the client->device variableHolger Hans Peter Freyther1-1/+1
This is fixing: src/osmo_client_core.c +105 osmo_client_capture(8) warn: variable dereferenced before check 'client'
2011-07-19misc: Remove process.h include, osmo_daemonize is in application.h nowHolger Hans Peter Freyther1-1/+0
2011-07-19Catch up with API change in osmo_sock_initDaniel Willmann2-2/+2
The connect0_bind1 parameter has been replaced by a generic flag parameter. With this patch osmo-pcap works (only) with versions of libosmocore 0.3.2 or newer - configure.ac changed to reflects that.
2011-07-19server: Register signal handler to reopen logfiles on SIGHUPDaniel Willmann2-0/+24
2011-07-19server: Fix memory leak and error handling in restart_pcapDaniel Willmann1-1/+8
2011-06-10server: Allow the group to read the files tooHolger Hans Peter Freyther1-1/+1
2011-06-10server: Make the maximum file size configurableHolger Hans Peter Freyther1-0/+12
2011-06-02osmo-pcap-server: Read the header in pieces too...Holger Hans Peter Freyther1-9/+22
2011-06-01osmo-pcap-server: Try to read the the data with a simple state machineHolger Hans Peter Freyther1-22/+50
2011-06-01wireformat: Send the length in the network order..Holger Hans Peter Freyther2-2/+3
this is a format change. but it is necessary now.
2011-06-01osmo-server-network: Print the size of the packet.Holger Hans Peter Freyther1-1/+2
Fix a typo, print the data we received and what we wanted.
2011-06-01osmo-client-core: Use the >= 0 handling.Holger Hans Peter Freyther1-1/+1
2011-06-01osmo-pcap-server: Indent the port properlyHolger Hans Peter Freyther1-1/+1
2011-06-01osmo-pcap-server: Just check for >= 0 to find a valid fdHolger Hans Peter Freyther1-2/+2
2011-06-01osmo-pcap-server: Initialize local_fd with -1 otherwiseHolger Hans Peter Freyther1-0/+1
2011-06-01osmo-pcap-server: Deal with systems not providing these macrosHolger Hans Peter Freyther1-1/+1
2011-06-01osmo-client-core: Work with older pcap librariesHolger Hans Peter Freyther1-0/+4
2011-06-01osmo-pcap-server: Write the pcap files to disk, roll them over0.0.1Holger Hans Peter Freyther2-4/+119
2011-06-01osmo-pcap-server: Prepare a file limit, initialize the base pathHolger Hans Peter Freyther1-0/+2
2011-05-31osmo-pcap-server: Accept the client connection from a given hostHolger Hans Peter Freyther2-2/+114
We now read from a given system.
2011-05-31osmo-pcap-server: Work on the generic VTY interface for the serverHolger Hans Peter Freyther3-0/+148
Work on being able to configure clients that are allowed to connect to the server.
2011-05-31osmo-pcap-server: Start with the skeleton of the pcap serverHolger Hans Peter Freyther4-1/+275
2011-05-31osmo-pcap-client: Connect to a server, send the data to itHolger Hans Peter Freyther4-2/+197
2011-05-31osmo-pcap-client: Set the filter string on the pcap device..Holger Hans Peter Freyther3-7/+93
2011-05-31osmo-pcap-client: Do not print the strings if they are NULLHolger Hans Peter Freyther1-8/+16
this makes glibc add the (null) for us, but we don't want that as we would attempt to compile a filter or open a device with that.
2011-05-31osmo-pcap-client: Work on the client code, be able to open the deviceHolger Hans Peter Freyther4-1/+195
Add vty code to allow changing the device, this will just attempt to open and close the device. Nothing else is done.
2011-05-31common: Add the default case, e.g. needed for the logging codeHolger Hans Peter Freyther1-1/+1
2011-05-31osmo_pcap_client: Start with the framework for the pcap clientHolger Hans Peter Freyther4-2/+279
This is just the normal skeleton for the osmocom code.
2011-05-31osmo-pcap: Create a dummy client.Holger Hans Peter Freyther2-0/+37