WebSockets: update some source headers

This commit is contained in:
Luciano Iam
2021-06-14 14:45:51 +02:00
parent 6cc59ad8e6
commit 5fffe985bb
4 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2020 Luciano Iam <oss@lucianoiam.com>
* Copyright (C) 2020-2021 Luciano Iam <oss@lucianoiam.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -129,7 +129,7 @@ ArdourFeedback::start ()
&ArdourFeedback::poll));
// server must be started before feedback otherwise
// should_request_write() will always return false
// read_blocks_event_loop() will always return false
if (server ().read_blocks_event_loop ()) {
_helper.run();
periodic_timeout->attach (_helper.main_loop()->get_context ());

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2020 Luciano Iam <oss@lucianoiam.com>
* Copyright (C) 2020-2021 Luciano Iam <oss@lucianoiam.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2020 Luciano Iam <oss@lucianoiam.com>
* Copyright (C) 2020-2021 Luciano Iam <oss@lucianoiam.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -540,7 +540,7 @@ WebsocketsServer::mod_poll_fd (struct lws_pollargs* pa)
it->second.lws_pfd.events = pa->events;
if (pa->events & LWS_POLLOUT) {
/* libwebsockets wants to write but cannot find a way to update
/* libwebsockets needs to write but cannot find a way to update
* an existing glib::iosource event flags using glibmm alone,
* create another iosource and set to IO_OUT, it will be destroyed
* after clearing POLLOUT (see 'else' body below)

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2020 Luciano Iam <oss@lucianoiam.com>
* Copyright (C) 2020-2021 Luciano Iam <oss@lucianoiam.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by