Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing definitions for adhoc matching headers #839

Merged
merged 1 commit into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/definitions.dox
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,9 @@
*
* \defgroup ScePspnetAdhocctl PSP net adhoc control
* PSP net adhoc control library
*
* \defgroup SceNetAdhocMatching net adhoc matching
* Net adhoc matching library
* \}
*
*
Expand Down
85 changes: 85 additions & 0 deletions include/psp2/net/adhoc_matching.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
/**
* \usergroup{SceNetAdhocMatching}
* \usage{psp2/net/adhoc_matching.h,SceNetAdhocMatching_stub}
*/

#ifndef _PSP2_NET_ADHOC_MATCHING_H_
#define _PSP2_NET_ADHOC_MATCHING_H_

#include <vitasdk/build_utils.h>
#include <psp2/types.h>
#include <psp2/net/net.h>

#ifdef __cplusplus
extern "C" {
#endif

typedef enum SceNetAdhocMatchingErrorCode {
SCE_NET_ADHOC_MATCHING_ERROR_INVALID_MODE = 0x80413101,
SCE_NET_ADHOC_MATCHING_ERROR_INVALID_PORT = 0x80413102,
SCE_NET_ADHOC_MATCHING_ERROR_INVALID_MAXNUM = 0x80413103,
SCE_NET_ADHOC_MATCHING_ERROR_RXBUF_TOO_SHORT = 0x80413104,
SCE_NET_ADHOC_MATCHING_ERROR_INVALID_OPTLEN = 0x80413105,
SCE_NET_ADHOC_MATCHING_ERROR_INVALID_ARG = 0x80413106,
SCE_NET_ADHOC_MATCHING_ERROR_INVALID_ID = 0x80413107,
SCE_NET_ADHOC_MATCHING_ERROR_ID_NOT_AVAIL = 0x80413108,
SCE_NET_ADHOC_MATCHING_ERROR_NO_SPACE = 0x80413109,
SCE_NET_ADHOC_MATCHING_ERROR_IS_RUNNING = 0x8041310a,
SCE_NET_ADHOC_MATCHING_ERROR_NOT_RUNNING = 0x8041310b,
SCE_NET_ADHOC_MATCHING_ERROR_UNKNOWN_TARGET = 0x8041310c,
SCE_NET_ADHOC_MATCHING_ERROR_TARGET_NOT_READY = 0x8041310d,
SCE_NET_ADHOC_MATCHING_ERROR_EXCEED_MAXNUM = 0x8041310e,
SCE_NET_ADHOC_MATCHING_ERROR_REQUEST_IN_PROGRESS = 0x8041310f,
SCE_NET_ADHOC_MATCHING_ERROR_ALREADY_ESTABLISHED = 0x80413110,
SCE_NET_ADHOC_MATCHING_ERROR_BUSY = 0x80413111,
SCE_NET_ADHOC_MATCHING_ERROR_ALREADY_INITIALIZED = 0x80413112,
SCE_NET_ADHOC_MATCHING_ERROR_NOT_INITIALIZED = 0x80413113,
SCE_NET_ADHOC_MATCHING_ERROR_PORT_IN_USE = 0x80413114,
SCE_NET_ADHOC_MATCHING_ERROR_STACKSIZE_TOO_SHORT = 0x80413115,
SCE_NET_ADHOC_MATCHING_ERROR_INVALID_DATALEN = 0x80413116,
SCE_NET_ADHOC_MATCHING_ERROR_NOT_ESTABLISHED = 0x80413117,
SCE_NET_ADHOC_MATCHING_ERROR_DATA_BUSY = 0x80413118,
SCE_NET_ADHOC_MATCHING_ERROR_INVALID_ALIGNMENT = 0x80413119
} SceNetAdhocMatchingErrorCode;

typedef enum SceNetAdhocMatchingMode{
SCE_NET_ADHOC_MATCHING_MODE_PARENT = 1,
SCE_NET_ADHOC_MATCHING_MODE_CHILD,
SCE_NET_ADHOC_MATCHING_MODE_P2P,
} SceNetAdhocMatchingMode;

typedef void (*SceNetAdhocMatchingCallback)(
int id,
int type,
SceNetInAddr* addr,
SceSize opt_len,
void* opt);

struct SceNetAdhocMatchingMember {
SceNetInAddr addr;
};

int sceNetAdhocMatchingInit(unsigned int pool_size, void *pool_ptr);
int sceNetAdhocMatchingTerm(void);

int sceNetAdhocMatchingStart(int id, int thread_priority, int thread_stack_size, int thread_cpu_affinity_mask, int hello_opt_len, void *hello_opt);
int sceNetAdhocMatchingCreate(SceNetAdhocMatchingMode mode, int max_members, SceUShort16 port, int rx_buffer_len, unsigned int hello_interval, unsigned int keep_alive_interval, int retry_count, unsigned int rexmt_interval, SceNetAdhocMatchingCallback handler_callback);
int sceNetAdhocMatchingStop(int id);
int sceNetAdhocMatchingDelete(int id);

int sceNetAdhocMatchingAbortSendData(int id, SceNetInAddr *addr);
int sceNetAdhocMatchingCancelTargetWithOpt(int id, SceNetInAddr *target, int opt_len, char *opt);
int sceNetAdhocMatchingCancelTarget(int id, SceNetInAddr *target);

int sceNetAdhocMatchingSetHelloOpt(int id, int opt_len, void *opt);
int sceNetAdhocMatchingGetHelloOpt(int id, unsigned int *opt_len, void *opt);

int sceNetAdhocMatchingGetMembers(int id, unsigned int *members_count, struct SceNetAdhocMatchingMember *members);
int sceNetAdhocMatchingSelectTarget(int id, SceNetInAddr *target, int opt_len, void *opt);
int sceNetAdhocMatchingSendData(int id, SceNetInAddr *addr, int data_len, void *data);

#ifdef __cplusplus
}
#endif

#endif /* _PSP2_NET_ADHOC_MATCHING_H_ */
1 change: 1 addition & 0 deletions include/vitasdk.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@
#include <psp2/kernel/sysmem.h>
#include <psp2/kernel/threadmgr.h>

#include <psp2/net/adhoc_matching.h>
#include <psp2/net/http.h>
#include <psp2/net/net.h>
#include <psp2/net/net_syscalls.h>
Expand Down
Loading