<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/DLT-daemon.git/src, branch dynamic_buffer_alloc</title>
<subtitle>github.com: GENIVI/dlt-daemon.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/DLT-daemon.git/'/>
<entry>
<title>Dynamic allocation of msg buffer</title>
<updated>2018-12-06T11:28:13+00:00</updated>
<author>
<name>ManikandanC</name>
<email>Manikandan.Chockalingam@in.bosch.com</email>
</author>
<published>2017-05-22T05:27:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/DLT-daemon.git/commit/?id=23652a7cbfb4ea24870f4e2f03cf16b9ece4c1ce'/>
<id>23652a7cbfb4ea24870f4e2f03cf16b9ece4c1ce</id>
<content type='text'>
It is possible to change the default buffer size for log message creation via
environment variable:

export DLT_LOG_MSG_BUF_LEN=&lt;value&gt;

Instead of using a static buffer with size of 1390 bytes, the buffer is
allocated dynamically with the specified value.The max size is restricted to approx 65k.

Signed-off-by: Christoph Lipka &lt;clipka@de.adit-jv.com&gt;
Signed-off-by: ManikandanC &lt;Manikandan.Chockalingam@in.bosch.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It is possible to change the default buffer size for log message creation via
environment variable:

export DLT_LOG_MSG_BUF_LEN=&lt;value&gt;

Instead of using a static buffer with size of 1390 bytes, the buffer is
allocated dynamically with the specified value.The max size is restricted to approx 65k.

Signed-off-by: Christoph Lipka &lt;clipka@de.adit-jv.com&gt;
Signed-off-by: ManikandanC &lt;Manikandan.Chockalingam@in.bosch.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>rename #define STATIC to DLT_STATIC</title>
<updated>2018-12-06T09:54:25+00:00</updated>
<author>
<name>Manikandan C</name>
<email>mchockalingam@de.adit-jv.com</email>
</author>
<published>2018-11-14T13:08:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/DLT-daemon.git/commit/?id=f50cd0544d70c837d68a28316d2141c5a650db91'/>
<id>f50cd0544d70c837d68a28316d2141c5a650db91</id>
<content type='text'>
Signed-off-by: ManikandanC &lt;Manikandan.Chockalingam@in.bosch.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: ManikandanC &lt;Manikandan.Chockalingam@in.bosch.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Use poll in the dlt-daemon for POSIX compliance</title>
<updated>2018-11-30T11:17:59+00:00</updated>
<author>
<name>ManikandanC</name>
<email>Manikandan.Chockalingam@in.bosch.com</email>
</author>
<published>2017-10-06T06:07:31+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/DLT-daemon.git/commit/?id=73180fc762f015935950f697822710af3f5bd23d'/>
<id>73180fc762f015935950f697822710af3f5bd23d</id>
<content type='text'>
The poll system call is now used in the daemon to enable DLT use in
POSIX compliant systems. Also added introduced new unregister_app macro
to avoid missing of logs in startup buffer.

Signed-off-by: Frederic Berat &lt;fberat@de.adit-jv.com&gt;
Signed-off-by: ManikandanC &lt;Manikandan.Chockalingam@in.bosch.com&gt;
Signed-off-by: Saya Sugiura &lt;ssugiura@jp.adit-jv.com&gt;
Signed-off-by: S. Hameed &lt;shameed@jp.adit-jv.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The poll system call is now used in the daemon to enable DLT use in
POSIX compliant systems. Also added introduced new unregister_app macro
to avoid missing of logs in startup buffer.

Signed-off-by: Frederic Berat &lt;fberat@de.adit-jv.com&gt;
Signed-off-by: ManikandanC &lt;Manikandan.Chockalingam@in.bosch.com&gt;
Signed-off-by: Saya Sugiura &lt;ssugiura@jp.adit-jv.com&gt;
Signed-off-by: S. Hameed &lt;shameed@jp.adit-jv.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>dlt-client: logging: Extended the receiver buffer size</title>
<updated>2018-11-23T10:10:47+00:00</updated>
<author>
<name>Manikandan C</name>
<email>mchockalingam@de.adit-jv.com</email>
</author>
<published>2018-11-12T13:01:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/DLT-daemon.git/commit/?id=13803189600c724341148af34f33688497d71991'/>
<id>13803189600c724341148af34f33688497d71991</id>
<content type='text'>
 - dlt-control couldn't receive all the GET_LOG_INFO response message
when many applications and contexts are registered.
Therefore the receiver buffer size was extended to 65K.
Also the receive buffer size macros are reduced to one variable.

 - Code cleanup and improvements

Signed-off-by: Saya Sugiura &lt;ssugiura@jp.adit-jv.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 - dlt-control couldn't receive all the GET_LOG_INFO response message
when many applications and contexts are registered.
Therefore the receiver buffer size was extended to 65K.
Also the receive buffer size macros are reduced to one variable.

 - Code cleanup and improvements

Signed-off-by: Saya Sugiura &lt;ssugiura@jp.adit-jv.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>dlt-control: update get log info</title>
<updated>2018-11-23T10:10:47+00:00</updated>
<author>
<name>Saya Sugiura</name>
<email>ssugiura@jp.adit-jv.com</email>
</author>
<published>2017-05-08T08:44:22+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/DLT-daemon.git/commit/?id=775949cfaf16f1a07cf549a00a3e8e0cc99e1d6c'/>
<id>775949cfaf16f1a07cf549a00a3e8e0cc99e1d6c</id>
<content type='text'>
- Context printing in dlt_process_get_log_info function updated
- Parameter in dlt_set_loginfo_parse_service_id function fixed

Signed-off-by: Saya Sugiura &lt;ssugiura@jp.adit-jv.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Context printing in dlt_process_get_log_info function updated
- Parameter in dlt_set_loginfo_parse_service_id function fixed

Signed-off-by: Saya Sugiura &lt;ssugiura@jp.adit-jv.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Protocol: DLT Service ID Enum instead of defines</title>
<updated>2018-11-23T10:10:47+00:00</updated>
<author>
<name>Manikandan C</name>
<email>mchockalingam@de.adit-jv.com</email>
</author>
<published>2018-11-09T09:17:06+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/DLT-daemon.git/commit/?id=bd7d2785c0a33d61ea5068e4aecaffba05626150'/>
<id>bd7d2785c0a33d61ea5068e4aecaffba05626150</id>
<content type='text'>
Signed-off-by: Christoph Lipka &lt;clipka@jp.adit-jv.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Christoph Lipka &lt;clipka@jp.adit-jv.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Gateway Improvements</title>
<updated>2018-11-23T10:10:47+00:00</updated>
<author>
<name>Manikandan C</name>
<email>mchockalingam@de.adit-jv.com</email>
</author>
<published>2018-10-29T15:32:17+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/DLT-daemon.git/commit/?id=d515020fa1bcb5d874084a68c9de9434dc9d994e'/>
<id>d515020fa1bcb5d874084a68c9de9434dc9d994e</id>
<content type='text'>
 -Support to send and parse periodic control messages
 -add application/contexts to passive ECU list
 -Refactor dlt_gateway_send_control_message
 -Gateway issues with corrupted data and on demand connection
 -Unit Test update

Signed-off-by: Saya Sugiura ssugiura@jp.adit-jv.com
Signed-off-by: Christoph Lipka clipka@jp.adit-jv.com
Signed-off-by: S. Hameed shameed@jp.adit-jv.com
Signed-off-by: ManikandanC Manikandan.Chockalingam@in.bosch.com
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 -Support to send and parse periodic control messages
 -add application/contexts to passive ECU list
 -Refactor dlt_gateway_send_control_message
 -Gateway issues with corrupted data and on demand connection
 -Unit Test update

Signed-off-by: Saya Sugiura ssugiura@jp.adit-jv.com
Signed-off-by: Christoph Lipka clipka@jp.adit-jv.com
Signed-off-by: S. Hameed shameed@jp.adit-jv.com
Signed-off-by: ManikandanC Manikandan.Chockalingam@in.bosch.com
</pre>
</div>
</content>
</entry>
<entry>
<title>Log storage - Updates (#82)</title>
<updated>2018-11-15T12:52:21+00:00</updated>
<author>
<name>ManikandanChockalingam</name>
<email>manikandan.chockalingam@in.bosch.com</email>
</author>
<published>2018-11-15T12:52:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/DLT-daemon.git/commit/?id=3cfb292aa43774428ce8dfe120fe16785942b086'/>
<id>3cfb292aa43774428ce8dfe120fe16785942b086</id>
<content type='text'>
- improvements and refactor key creation
- Sync strategies added

Signed-off-by: ManikandanC &lt;Manikandan.Chockalingam@in.bosch.com&gt;
Signed-off-by: Saya Sugiura &lt;ssugiura@jp.adit-jv.com&gt;
Signed-off-by: S. Hameed &lt;shameed@jp.adit-jv.com&gt;
Signed-off-by: Ravi Sankar P &lt;ponnurangamravi.sankar@in.bosch.com&gt;
Signed-off-by: Christoph Lipka &lt;clipka@jp.adit-jv.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- improvements and refactor key creation
- Sync strategies added

Signed-off-by: ManikandanC &lt;Manikandan.Chockalingam@in.bosch.com&gt;
Signed-off-by: Saya Sugiura &lt;ssugiura@jp.adit-jv.com&gt;
Signed-off-by: S. Hameed &lt;shameed@jp.adit-jv.com&gt;
Signed-off-by: Ravi Sankar P &lt;ponnurangamravi.sankar@in.bosch.com&gt;
Signed-off-by: Christoph Lipka &lt;clipka@jp.adit-jv.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Fflush stdout in the intenal logger (#81)</title>
<updated>2018-10-30T01:52:15+00:00</updated>
<author>
<name>Alexander Menzhinsky</name>
<email>amenzhinsky@gmail.com</email>
</author>
<published>2018-10-30T01:52:15+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/DLT-daemon.git/commit/?id=6cbaa4fd39fb584a227b8eb7a3331dcfce54d9a3'/>
<id>6cbaa4fd39fb584a227b8eb7a3331dcfce54d9a3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>dlt-daemon: per ECU list of user information (#80)</title>
<updated>2018-10-30T01:51:50+00:00</updated>
<author>
<name>ManikandanChockalingam</name>
<email>manikandan.chockalingam@in.bosch.com</email>
</author>
<published>2018-10-30T01:51:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/DLT-daemon.git/commit/?id=ac44c47265528ddd29afbb9a72bcf095a877ecd1'/>
<id>ac44c47265528ddd29afbb9a72bcf095a877ecd1</id>
<content type='text'>
Prepare daemon to store applications/context information of other ECUs as well. This commit prepares the dlt-daemon to store logs from passive nodes in a logstorage device.

Signed-off-by: Christoph Lipka &lt;clipka@jp.adit-jv.com&gt;
Signed-off-by: ManikandanC &lt;Manikandan.Chockalingam@in.bosch.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Prepare daemon to store applications/context information of other ECUs as well. This commit prepares the dlt-daemon to store logs from passive nodes in a logstorage device.

Signed-off-by: Christoph Lipka &lt;clipka@jp.adit-jv.com&gt;
Signed-off-by: ManikandanC &lt;Manikandan.Chockalingam@in.bosch.com&gt;</pre>
</div>
</content>
</entry>
</feed>
