Changeset e28175d in mainline for uspace/srv/net/udp/udp.c
- Timestamp:
- 2020-03-15T10:44:02Z (6 years ago)
- Parents:
- b401b33 (diff), 44dde42 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - git-author:
- heiducteam <tristanided@…> (2020-03-15 10:44:02)
- git-committer:
- GitHub <noreply@…> (2020-03-15 10:44:02)
- File:
-
- 1 edited
-
uspace/srv/net/udp/udp.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/udp/udp.c
rb401b33 re28175d 47 47 #define NAME "udp" 48 48 49 static udp_assocs_dep_t udp_assocs_dep = { 50 .get_srcaddr = udp_get_srcaddr, 51 .transmit_msg = udp_transmit_msg 52 }; 53 49 54 static errno_t udp_init(void) 50 55 { … … 53 58 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_init()"); 54 59 55 rc = udp_assocs_init( );60 rc = udp_assocs_init(&udp_assocs_dep); 56 61 if (rc != EOK) { 57 62 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed initializing associations.");
Note:
See TracChangeset
for help on using the changeset viewer.
