f6ca1f Refactor: libcrmcommon: separate IPC code into multiple files

9 files Authored by kgaillot 4 years ago, Committed by Packit Service 4 years ago,
    Refactor: libcrmcommon: separate IPC code into multiple files
    
    A significant amount of new IPC code will be added soon, so avoid the file
    sizes becoming ridiculous.
    
    Before:
      210 include/crm/common/ipc_internal.h
     1846 lib/common/ipc.c
     2056 total
    
    After:
      215 include/crm/common/ipc_internal.h
      755 lib/common/ipc_client.c
      103 lib/common/ipc_common.c
      903 lib/common/ipc_server.c
      146 lib/common/messages.c
     2122 total
    
    Rename newly exposed symbols per current style guidelines.
    
        
file modified
+19 -6
file modified
+4 -1
file removed
-1846
file added
+146