Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
rdos
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julien David
rdos
Commits
40b89ddb
Commit
40b89ddb
authored
4 years ago
by
Julien David
Browse files
Options
Downloads
Plain Diff
Merge branch '001-Addingserver' into 'master'
WIP - 001 - addingserver See merge request
!2
parents
09905551
082bcb49
No related branches found
No related tags found
1 merge request
!2
WIP - 001 - addingserver
Pipeline
#609
failed
4 years ago
Stage: build
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
softwares/server/server.py
+24
-0
24 additions, 0 deletions
softwares/server/server.py
with
24 additions
and
0 deletions
softwares/server/server.py
0 → 100755
+
24
−
0
View file @
40b89ddb
#authors : Julien David & Ismail MOUMNI
import
socket
# SERVER PORT
__RDOS_Port__
=
9393
# Creating Socket IP4 TCP
def
server_conn
(
address
,
PORT
):
with
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
as
serv
:
#BINDING
serv
.
bind
((
address
,
PORT
))
# Listening to 1 CLient
serv
.
listen
()
#accepting the connection from client and getting client IP
conn
,
addr
=
serv
.
accept
()
with
conn
:
# Sending
conn
.
send
(
bytes
(
"
Bonjour !!
"
,
"
utf-8
"
))
print
(
'
Connexion acceptée depuis l IP :
'
,
addr
)
# Receiving Data from Client
data
=
conn
.
recv
(
1024
)
print
(
data
)
serv
.
close
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment