summaryrefslogtreecommitdiff
path: root/examples/mrp_client
Commit message (Collapse)AuthorAgeFilesLines
* Fix mmrp parsingFredrik Hallenberg2017-11-161-2/+2
|
* examples: mrp_client: BUGFIX, add missing MSRP failure codeAndrew Elder2015-10-051-0/+1
|
* Merge pull request #235 from wgoossens/cross_compile_supportandrew-elder2015-06-081-2/+2
|\ | | | | Cross compile support
| * mrp_client: Allow overriding compiler commandWalter Goossens2015-06-061-2/+2
| | | | | | | | Signed-off-by: Walter Goossens <walter.goossens@axon.tv>
* | Remove executable bit from sourcefilesWalter Goossens2015-06-074-0/+0
|/ | | | Signed-off-by: Walter Goossens <walter.goossens@axon.tv>
* MRP: fix mrpclient.c compileAndrew Elder2015-02-281-11/+1
|
* mrpl: mrpdclient_sendto does not return 0/-1, so don't OR its returnJean-Baptiste Maillet2014-12-181-2/+9
|
* mrpl, mrpq: free mrpd daemon message bufferJean-Baptiste Maillet2014-12-092-0/+2
| | | | Bug introduced by previous commit.
* mrpdclient: mrpdclient_close() send a "BYE" before closing connectionJean-Baptiste Maillet2014-12-093-10/+7
| | | | | | The "BYE" message allows the mrpd daemon to free a client connection. This commit thus prevent a leak risk by both sending this message and closing the socket on client side.
* mrpdclient: rename MRPDCLIENT_MAX_FRAME_SIZE to MRPDCLIENT_MAX_MSG_SIZEJean-Baptiste Maillet2014-12-025-20/+20
|
* mrpValidate: convert to mrpdclient new APIJean-Baptiste Maillet2014-11-271-31/+38
|
* mrpl: minor, remove a lot of useless includesJean-Baptiste Maillet2014-11-271-17/+0
|
* mrpl: convert to mrpdclient new APIJean-Baptiste Maillet2014-11-271-42/+19
|
* mrpq: small cleanupsJean-Baptiste Maillet2014-11-271-10/+13
|
* mrpq: remove useless includesJean-Baptiste Maillet2014-11-271-3/+0
|
* mrpq: convert to mrpdclient new APIJean-Baptiste Maillet2014-11-271-16/+17
|
* mrpdclient: API change, un-globify the socket connection to mrpdJean-Baptiste Maillet2014-11-272-29/+34
| | | | | | | | | | | | mrpdclient_init returns the socket: - No need to have the socket global in mrpdclient lib, and allow its un-globification in applications. - Applications can use the socket to build a poll/select event loop around it. - Subsequent calls to mrpdclinet_* take the socket as additional parameter. - Socket is closed and uninit in mrpdclient_close. API change applied to mrpctl as the simplest sample code for it. Note: this commit breaks the build of mrpq and mrpValidate.
* mrpdclient API change: application need not to know the mrpd socket port numberJean-Baptiste Maillet2014-11-275-8/+7
| | | | | | | | - The applications make no use of this port number other than pass it to mrpdclient_init(). - The mrpd daemon communication socket port is hardcoded. This port number should be transparent to applications.
* Fix typo: mprdclient vs mrpdclientJean-Baptiste Maillet2014-11-275-34/+34
|
* Fix for Coverity CID71741 - Dereference null return valueJean-Baptiste Maillet2014-11-241-0/+4
|
* Fix for Coverity CID71769 - Dereference null return valueJean-Baptiste Maillet2014-11-241-1/+4
|
* Examples makefiles: harmonization and cleaning.Jean-Baptiste Maillet2014-11-211-5/+6
| | | | | Remove some unneeded linker flags, add some missing headers dependencies, same optimization and debug options for all.
* Build, minor: update warning option "-W" to new name "-Wextra"Jean-Baptiste Maillet2014-11-211-1/+1
| | | | | From gcc documentation: "The older name is still supported, but the newer name is more descriptive."
* MRP: mrp_client: mrphelper, add mrp_app_state_mapping[] bounds check to ↵Andrew Elder2014-09-241-1/+4
| | | | mrpdhelper_to_string()
* Merge remote branch 'oavb/open-avb-next' into avb-devAndrew Elder2014-08-151-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: daemons/gptp/common/avbts_port.hpp daemons/gptp/common/ieee1588.hpp daemons/gptp/common/ieee1588clock.cpp daemons/gptp/common/ieee1588port.cpp daemons/gptp/common/ptp_message.cpp daemons/mrpd/mmrp.c daemons/mrpd/mrp.c daemons/mrpd/mrp.h daemons/mrpd/mrpd.c daemons/mrpd/msrp.c daemons/mrpd/mvrp.c examples/mrp_client/mrpValidate.c Conflicts have been corrected.
| * Add top level makefileLad, Prabhakar2014-04-251-1/+1
| | | | | | | | Signed-off-by: Lad, Prabhakar <prabhakar.lad@vayavyalabs.com>
| * Initial commit of mrpValidate utility.craiggunther2013-11-222-1/+439
| |
| * MRP client: fix potential memory leak in error return path of ↵Andrew Elder2013-11-011-1/+3
| | | | | | | | mrpdhelper_to_string()
| * MRP: examples: helper: add enums for listener declaration types (avoids ↵Andrew Elder2013-11-011-0/+7
| | | | | | | | magic numbers in the code)
| * MRP: mrp_client: mrpdhelper: bugfix in application state string compare in ↵Andrew Elder2013-08-191-2/+4
| | | | | | | | parse_app_state()
| * mrp: examples: mrp_client: mrpd_helper, bugfix in parse_state() functionAndrew Elder2013-06-061-2/+2
| |
| * mrp: client notification string updated to always include the registrar and ↵Andrew Elder2013-06-061-13/+34
| | | | | | | | applicant states
| * mrp: examples: mrp_client: mrpdhelper, add method to translate mrpd_notify ↵Andrew Elder2013-06-062-1/+118
| | | | | | | | struct into a string
* | MRP: msrp, domain, add code to track neighbor SRclassPriorityAndrew Elder2014-07-292-4/+7
| |
* | MRP: mrpdhelper, test of TalkerFailed error code != 0 is non-optimal.Andrew Elder2014-07-171-4/+2
| |
* | MRP: update to support MSRP Domain vlan_id or priority being changedAndrew Elder2014-07-171-6/+2
| |
* | mrp: examples: mrpdhelper: add MSRP TalkerFailed codesAndrew Elder2014-05-231-0/+22
| |
* | mrpValidate comment updateAndrew Elder2014-04-281-4/+7
| |
* | mrpValidate: correct TalkerFailed commentAndrew Elder2014-04-091-2/+2
| |
* | examples: mrp_client, mrpdhelper, bugfixes to string translations related to ↵Andrew Elder2014-04-031-8/+6
| | | | | | | | adding TalkerFailed
* | mrpValidate: add code for testing TalkerFailed declarationAndrew Elder2014-04-021-1/+39
| |
* | mrp: add TalkerFailed supportAndrew Elder2014-04-022-8/+104
| |
* | Initial commit of mrpValidate utility.craiggunther2014-02-062-1/+439
| |
* | MRP client: fix potential memory leak in error return path of ↵Andrew Elder2013-09-231-1/+3
| | | | | | | | mrpdhelper_to_string()
* | MRP: examples: helper: add enums for listener declaration types (avoids ↵Andrew Elder2013-09-171-0/+7
| | | | | | | | magic numbers in the code)
* | MRP: mrp_client: mrpdhelper: bugfix in application state string compare in ↵Andrew Elder2013-08-151-2/+4
| | | | | | | | parse_app_state()
* | MRP: mrpdhelp.c, fix MSVC compileAndrew Elder2013-08-151-0/+7
| |
* | examples: mrp_client: bugfix for mrpdhelper_notify_equal() comparison of ↵Andrew Elder2013-08-151-3/+3
| | | | | | | | MSRP domain attribute
* | mrp: help file bugfixAndrew Elder2013-05-311-2/+2
| |
* | mrp: client notification string updated to always include the registrar and ↵Andrew Elder2013-05-311-13/+34
| | | | | | | | applicant states